Browse Source

Start of an amazing story

master
Gabriel Pariat 3 years ago
commit
684ce2551b
  1. 9
      README.md
  2. 11
      business-tycoon.asd
  3. 3
      business-tycoon.lisp
  4. 4
      package.lisp

9
README.md

@ -0,0 +1,9 @@ @@ -0,0 +1,9 @@
# business-tycoon
### _Your Name <your.name@example.com>_
This is a project to do ... something.
## License
Specify license here

11
business-tycoon.asd

@ -0,0 +1,11 @@ @@ -0,0 +1,11 @@
;;;; business-tycoon.asd
(asdf:defsystem #:business-tycoon
:description "Describe business-tycoon here"
:author "Your Name <your.name@example.com>"
:license "Specify license here"
:version "0.0.1"
:serial t
:depends-on (#:cl-glfw3 #:cl-opengl)
:components ((:file "package")
(:file "business-tycoon")))

3
business-tycoon.lisp

@ -0,0 +1,3 @@ @@ -0,0 +1,3 @@
;;;; business-tycoon.lisp
(in-package #:business-tycoon)

4
package.lisp

@ -0,0 +1,4 @@ @@ -0,0 +1,4 @@
;;;; package.lisp
(defpackage #:business-tycoon
(:use #:cl))
Loading…
Cancel
Save