From 59eec134ac0fc3cb3ab7ecfd32b0be006d346591 Mon Sep 17 00:00:00 2001 From: Syndamia Date: Tue, 6 Dec 2022 11:48:20 +0200 Subject: [asd] Fixed packages configuration --- src/packages.lisp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/packages.lisp (limited to 'src/packages.lisp') diff --git a/src/packages.lisp b/src/packages.lisp new file mode 100644 index 0000000..441101d --- /dev/null +++ b/src/packages.lisp @@ -0,0 +1,21 @@ +(in-package :cl) + +(defpackage senzill.math + (:use :cl) + (:export :% + :+= + :++1 + :-= + :-- + ://= + :*= + :^ + :avg) + (:documentation "Math functions")) + +(defpackage senzill.collections + (:use :cl) + (:export :push-back + :pop-back + :slice) + (:documentation "List functions")) -- cgit v1.2.3