aboutsummaryrefslogtreecommitdiff
path: root/main.lisp
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2025-02-14 16:11:54 +0000
committerAryadev Chavali <aryadev@aryadevchavali.com>2025-02-14 16:11:54 +0000
commit02ff1a3fb3f687160b3164680fd655da56c0eae9 (patch)
tree0a3b440e7686d75d22d2927b870e0639d4fa926b /main.lisp
parent4c27e7d5c1bf118d62da28e2be9a0983022190e3 (diff)
downloadcantedraw-02ff1a3fb3f687160b3164680fd655da56c0eae9.tar.gz
cantedraw-02ff1a3fb3f687160b3164680fd655da56c0eae9.tar.bz2
cantedraw-02ff1a3fb3f687160b3164680fd655da56c0eae9.zip
Prefix all packages with `cantedraw`
This is mostly a sanity check in-case anyone else decides to load this system for use in their own package - don't want to conflict with their names.
Diffstat (limited to 'main.lisp')
-rw-r--r--main.lisp6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.lisp b/main.lisp
index 32a0088..af6312d 100644
--- a/main.lisp
+++ b/main.lisp
@@ -13,12 +13,12 @@
;;; Commentary:
-;; Implementation of `main' package. Defines the entrypoint of the program,
-;; handling any input from the user and passing it into the system.
+;; Defines the entrypoint of the program, handling any input from the user and
+;; passing it into the system.
;;; Code:
-(in-package :main)
+(in-package :cantedraw.main)
(fn read-input (&optional (prompt "> ")) (-> (&optional string) string)
(format t "~a" prompt)