commit 684ce2551b8909d3fbde5eb295e82b9a5ad4b5f6 Author: Gabriel Pariat Date: Tue Apr 12 20:12:40 2022 -0400 Start of an amazing story diff --git a/README.md b/README.md new file mode 100644 index 0000000..f46bc36 --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# business-tycoon +### _Your Name _ + +This is a project to do ... something. + +## License + +Specify license here + diff --git a/business-tycoon.asd b/business-tycoon.asd new file mode 100644 index 0000000..136fded --- /dev/null +++ b/business-tycoon.asd @@ -0,0 +1,11 @@ +;;;; business-tycoon.asd + +(asdf:defsystem #:business-tycoon + :description "Describe business-tycoon here" + :author "Your Name " + :license "Specify license here" + :version "0.0.1" + :serial t + :depends-on (#:cl-glfw3 #:cl-opengl) + :components ((:file "package") + (:file "business-tycoon"))) diff --git a/business-tycoon.lisp b/business-tycoon.lisp new file mode 100644 index 0000000..3708fb8 --- /dev/null +++ b/business-tycoon.lisp @@ -0,0 +1,3 @@ +;;;; business-tycoon.lisp + +(in-package #:business-tycoon) diff --git a/package.lisp b/package.lisp new file mode 100644 index 0000000..8fdf735 --- /dev/null +++ b/package.lisp @@ -0,0 +1,4 @@ +;;;; package.lisp + +(defpackage #:business-tycoon + (:use #:cl))