Splitting macros and functions into different packages and source code makes it easier to look at. Functions currently implemented: - range: like Python's range - parse-integer*: parse-integer but junk-allowed is set to t.
10 lines
273 B
Common Lisp
10 lines
273 B
Common Lisp
(asdf:defsystem :odraw
|
|
:depends-on (:deploy)
|
|
:components ((:file "packages")
|
|
(:file "lib.macros")
|
|
(:file "lib.functions")
|
|
(:file "main"))
|
|
:build-operation "deploy-op"
|
|
:build-pathname "odraw"
|
|
:entry-point "main:start")
|