From 52f7db44cf442e466fd4a0be7eb5e0e03fb4ff09 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Tue, 11 Feb 2025 00:30:27 +0000 Subject: [PATCH] main -> odraw --- odraw.asd | 4 ++-- main.lisp => odraw.lisp | 6 +++--- packages.lisp | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) rename main.lisp => odraw.lisp (91%) 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 similarity index 91% rename from main.lisp rename to 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))