From c069917170b89dabd22cee6685f17e6d27eb5e61 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Sun, 9 Feb 2025 12:21:31 +0000 Subject: Implement threading macros and make package lib.macros to hold them. --- packages.lisp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'packages.lisp') diff --git a/packages.lisp b/packages.lisp index 0711193..dafbc95 100644 --- a/packages.lisp +++ b/packages.lisp @@ -13,10 +13,15 @@ ;;; Commentary: -;; +;; Define the packages (namespaces) involved in this project. ;;; Code: -(defpackage main +(defpackage lib.macros (:use :cl) + (:export + :_ :--> :->>)) + +(defpackage main + (:use :cl :lib.macros) (:export :start)) -- cgit v1.2.3-13-gbd6f