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.
This commit is contained in:
2025-02-09 13:29:22 +00:00
parent bd47029bd8
commit bbde84c7d7
2 changed files with 14 additions and 1 deletions

View File

@@ -21,7 +21,8 @@
(:use :cl)
(:export
:_ :--> :->>
:while))
:while
:-> :fn))
(defpackage main
(:use :cl :lib.macros)