aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--odraw.asd4
-rw-r--r--odraw.lisp (renamed from main.lisp)6
-rw-r--r--packages.lisp2
3 files changed, 6 insertions, 6 deletions
diff --git a/odraw.asd b/odraw.asd
index 79d714c..fee4d6e 100644
--- a/odraw.asd
+++ b/odraw.asd
@@ -3,7 +3,7 @@
:components ((:file "packages")
(:file "lib.macros")
(:file "lib.functions")
- (:file "main"))
+ (:file "odraw"))
:build-operation "deploy-op"
:build-pathname "odraw"
- :entry-point "main:start")
+ :entry-point "odraw:start")
diff --git a/main.lisp b/odraw.lisp
index 5c324af..d4d94ee 100644
--- a/main.lisp
+++ b/odraw.lisp
@@ -1,4 +1,4 @@
-;;; main.lisp - 2025-02-09
+;;; odraw.lisp - 2025-02-11
;; Copyright (C) 2025 Aryadev Chavali
@@ -13,12 +13,12 @@
;;; Commentary:
-;; Implementation of `main' package. Defines the entrypoint of the program,
+;; Implementation of `odraw' package. Defines the entrypoint of the program,
;; handling any input from the user and passing it into the system.
;;; Code:
-(in-package :main)
+(in-package :odraw)
(fn read-input (&optional (prompt "> ")) (-> (&optional string) string)
(format t "~a" prompt)
diff --git a/packages.lisp b/packages.lisp
index b2a6760..703f890 100644
--- a/packages.lisp
+++ b/packages.lisp
@@ -32,6 +32,6 @@
:range :take :split
:rev-map))
-(defpackage main
+(defpackage odraw
(:use :cl :lib.macros :lib.functions)
(:export :start))