aboutsummaryrefslogtreecommitdiff
path: root/src/packages.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/packages.lisp')
-rw-r--r--src/packages.lisp21
1 files changed, 21 insertions, 0 deletions
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"))