diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-02-14 16:11:54 +0000 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-02-14 16:11:54 +0000 |
commit | 02ff1a3fb3f687160b3164680fd655da56c0eae9 (patch) | |
tree | 0a3b440e7686d75d22d2927b870e0639d4fa926b /main.lisp | |
parent | 4c27e7d5c1bf118d62da28e2be9a0983022190e3 (diff) | |
download | cantedraw-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.lisp | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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) |