From bbde84c7d7d525f8fcfa3638ae0bca428efc9e67 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Sun, 9 Feb 2025 13:29:22 +0000 Subject: 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. --- packages.lisp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'packages.lisp') 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) -- cgit v1.2.3-13-gbd6f