This repository has been archived on 2025-11-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
cantedraw/odraw.asd
Aryadev Chavali ef572b992b Introduce lib.functions which includes helper functions
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.
2025-02-11 00:40:19 +00:00

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")