aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cantedraw.asd4
-rw-r--r--main.lisp (renamed from cantedraw.lisp)6
-rw-r--r--packages.lisp2
3 files changed, 6 insertions, 6 deletions
diff --git a/cantedraw.asd b/cantedraw.asd
index b86503f..37be1d5 100644
--- a/cantedraw.asd
+++ b/cantedraw.asd
@@ -2,10 +2,10 @@
:components ((:file "packages")
(:file "lib.macros")
(:file "lib.functions")
- (:file "cantedraw"))
+ (:file "main"))
:build-operation "program-op"
:build-pathname "bin/cantedraw"
- :entry-point "cantedraw:start")
+ :entry-point "main:start")
#+sb-core-compression
(defmethod asdf:perform ((o asdf:image-op) (c asdf:system))
diff --git a/cantedraw.lisp b/main.lisp
index 4380d8a..32a0088 100644
--- a/cantedraw.lisp
+++ b/main.lisp
@@ -1,4 +1,4 @@
-;;; cantedraw.lisp - 2025-02-11
+;;; main.lisp - 2025-02-11
;; Copyright (C) 2025 Aryadev Chavali
@@ -13,12 +13,12 @@
;;; Commentary:
-;; Implementation of `cantedraw' package. Defines the entrypoint of the program,
+;; Implementation of `main' package. Defines the entrypoint of the program,
;; handling any input from the user and passing it into the system.
;;; Code:
-(in-package :cantedraw)
+(in-package :main)
(fn read-input (&optional (prompt "> ")) (-> (&optional string) string)
(format t "~a" prompt)
diff --git a/packages.lisp b/packages.lisp
index 7c77f50..b2a6760 100644
--- a/packages.lisp
+++ b/packages.lisp
@@ -32,6 +32,6 @@
:range :take :split
:rev-map))
-(defpackage cantedraw
+(defpackage main
(:use :cl :lib.macros :lib.functions)
(:export :start))