5 changed files with 37 additions and 1 deletions
@ -1,3 +1,9 @@
@@ -1,3 +1,9 @@
|
||||
# nihil |
||||
### _Aubrey Lambda_ |
||||
|
||||
This is a project to do ... something. |
||||
|
||||
## License |
||||
|
||||
youre mom!! |
||||
|
||||
A new cutting-edge language that produces absolutely bug-free code and is incredibly easy to understand. |
@ -0,0 +1,10 @@
@@ -0,0 +1,10 @@
|
||||
;;;; nihil.asd |
||||
|
||||
(asdf:defsystem #:nihil |
||||
:description "Describe nihil here" |
||||
:author "Aubrey Lambda" |
||||
:license "youre mom!!" |
||||
:version "0.0.1" |
||||
:serial t |
||||
:components ((:file "package") |
||||
(:file "nihil"))) |
@ -0,0 +1,13 @@
@@ -0,0 +1,13 @@
|
||||
;;;; nihil.lisp |
||||
|
||||
(in-package #:nihil) |
||||
|
||||
(defun compile-nihil(in out) |
||||
(loop for file-input = (read in nil :eof) |
||||
while (not (null file-input)) do |
||||
(cond |
||||
((symbolp file-input) ( |
||||
|
||||
(defun main() |
||||
(let ((args (uiop:command-line-args))) |
||||
( |
@ -0,0 +1,3 @@
@@ -0,0 +1,3 @@
|
||||
;;;; nihil.lisp |
||||
|
||||
(in-package #:nihil) |
Loading…
Reference in new issue