diff --git a/README.md b/README.md index d075305..dc99864 100644 --- a/README.md +++ b/README.md @@ -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. \ No newline at end of file diff --git a/nihil.asd b/nihil.asd new file mode 100644 index 0000000..4897e9d --- /dev/null +++ b/nihil.asd @@ -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"))) diff --git a/nihil.lisp b/nihil.lisp new file mode 100644 index 0000000..11e1754 --- /dev/null +++ b/nihil.lisp @@ -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))) + ( diff --git a/nihil.lisp~ b/nihil.lisp~ new file mode 100644 index 0000000..6c108af --- /dev/null +++ b/nihil.lisp~ @@ -0,0 +1,3 @@ +;;;; nihil.lisp + +(in-package #:nihil) diff --git a/package.lisp b/package.lisp new file mode 100644 index 0000000..e8cc7da --- /dev/null +++ b/package.lisp @@ -0,0 +1,4 @@ +;;;; package.lisp + +(defpackage #:nihil + (:use #:cl))