From ef572b992b57011efd6dbfe649b0ba68f5f5f320 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Mon, 10 Feb 2025 06:31:43 +0000 Subject: Introduce lib.functions which includes helper functions Splitting macros and functions into different packages and source code makes it easier to look at. Functions currently implemented: - range: like Python's range - parse-integer*: parse-integer but junk-allowed is set to t. --- packages.lisp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'packages.lisp') diff --git a/packages.lisp b/packages.lisp index f7e56a6..aff5b68 100644 --- a/packages.lisp +++ b/packages.lisp @@ -24,6 +24,12 @@ :while :-> :fn)) +(defpackage lib.functions + (:use :cl :lib.macros) + (:export + :range + :parse-integer*)) + (defpackage main (:use :cl :lib.macros) (:export :start)) -- cgit v1.2.3-13-gbd6f