diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-02-09 13:29:22 +0000 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-02-11 00:40:19 +0000 |
commit | bbde84c7d7d525f8fcfa3638ae0bca428efc9e67 (patch) | |
tree | 2c68ef0dc8e08933cb4b871895a5d75cb82d95ba /packages.lisp | |
parent | bd47029bd83f81ea7ce5fbcc7f9f711a32ba00ca (diff) | |
download | cantedraw-bbde84c7d7d525f8fcfa3638ae0bca428efc9e67.tar.gz cantedraw-bbde84c7d7d525f8fcfa3638ae0bca428efc9e67.tar.bz2 cantedraw-bbde84c7d7d525f8fcfa3638ae0bca428efc9e67.zip |
Add type alias for function and macro for defining functions with type specifier
`fn' is a convenience macro for defining functions with a type
specifier. Only really matters for `sbcl` and other hard-optimising
Lisp interpreters which actually take these seriously.
Diffstat (limited to 'packages.lisp')
-rw-r--r-- | packages.lisp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages.lisp b/packages.lisp index 8e66c78..f7e56a6 100644 --- a/packages.lisp +++ b/packages.lisp @@ -21,7 +21,8 @@ (:use :cl) (:export :_ :--> :->> - :while)) + :while + :-> :fn)) (defpackage main (:use :cl :lib.macros) |