diff options
-rw-r--r-- | odraw.asd | 4 | ||||
-rw-r--r-- | odraw.lisp (renamed from main.lisp) | 6 | ||||
-rw-r--r-- | packages.lisp | 2 |
3 files changed, 6 insertions, 6 deletions
@@ -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") @@ -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)) |