Implement threading macros and make package lib.macros to hold them.

This commit is contained in:
2025-02-09 12:21:31 +00:00
parent 19b68fa49c
commit c069917170
3 changed files with 71 additions and 2 deletions

View File

@@ -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))