aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bob.lisp6
-rw-r--r--cantedraw.asd (renamed from odraw.asd)8
-rw-r--r--cantedraw.lisp (renamed from odraw.lisp)6
-rw-r--r--packages.lisp2
4 files changed, 11 insertions, 11 deletions
diff --git a/bob.lisp b/bob.lisp
index 12146f6..62ab05f 100644
--- a/bob.lisp
+++ b/bob.lisp
@@ -26,11 +26,11 @@
(in-package :bob)
(ql:quickload :deploy)
-(asdf:load-asd (merge-pathnames "odraw.asd" (uiop:getcwd)))
+(asdf:load-asd (merge-pathnames "cantedraw.asd" (uiop:getcwd)))
(defun build ()
(push :deploy-console *features*)
- (asdf:make :odraw))
+ (asdf:make :cantedraw))
(defun load-all ()
- (asdf:load-system :odraw))
+ (asdf:load-system :cantedraw))
diff --git a/odraw.asd b/cantedraw.asd
index fee4d6e..d3aa60d 100644
--- a/odraw.asd
+++ b/cantedraw.asd
@@ -1,9 +1,9 @@
-(asdf:defsystem :odraw
+(asdf:defsystem :cantedraw
:depends-on (:deploy)
:components ((:file "packages")
(:file "lib.macros")
(:file "lib.functions")
- (:file "odraw"))
+ (:file "cantedraw"))
:build-operation "deploy-op"
- :build-pathname "odraw"
- :entry-point "odraw:start")
+ :build-pathname "cantedraw"
+ :entry-point "cantedraw:start")
diff --git a/odraw.lisp b/cantedraw.lisp
index d4d94ee..4380d8a 100644
--- a/odraw.lisp
+++ b/cantedraw.lisp
@@ -1,4 +1,4 @@
-;;; odraw.lisp - 2025-02-11
+;;; cantedraw.lisp - 2025-02-11
;; Copyright (C) 2025 Aryadev Chavali
@@ -13,12 +13,12 @@
;;; Commentary:
-;; Implementation of `odraw' package. Defines the entrypoint of the program,
+;; Implementation of `cantedraw' package. Defines the entrypoint of the program,
;; handling any input from the user and passing it into the system.
;;; Code:
-(in-package :odraw)
+(in-package :cantedraw)
(fn read-input (&optional (prompt "> ")) (-> (&optional string) string)
(format t "~a" prompt)
diff --git a/packages.lisp b/packages.lisp
index 703f890..7c77f50 100644
--- a/packages.lisp
+++ b/packages.lisp
@@ -32,6 +32,6 @@
:range :take :split
:rev-map))
-(defpackage odraw
+(defpackage cantedraw
(:use :cl :lib.macros :lib.functions)
(:export :start))