diff options
author | nea <nea@nea.moe> | 2023-08-10 18:01:37 +0200 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-08-10 18:01:37 +0200 |
commit | 873864974127ec4f123c7db0560235e806c3faab (patch) | |
tree | c1d39786d89dd39f7843a73c2d69e75a12894b36 /res/builtins.lisp | |
parent | 0ab6dab185e31fcf6f3e0cf98dc8496f02448ee8 (diff) | |
download | nealisp-873864974127ec4f123c7db0560235e806c3faab.tar.gz nealisp-873864974127ec4f123c7db0560235e806c3faab.tar.bz2 nealisp-873864974127ec4f123c7db0560235e806c3faab.zip |
Add test junit formatter
Diffstat (limited to 'res/builtins.lisp')
-rw-r--r-- | res/builtins.lisp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/res/builtins.lisp b/res/builtins.lisp index 4348e52..e355c2f 100644 --- a/res/builtins.lisp +++ b/res/builtins.lisp @@ -1,5 +1,6 @@ (defun comment (...) ((pure nil))) (comment "comment is a noop function for documentation") +(export comment) (comment "if! a strict version of a regular if, meaning it evaluates both the falsy and the truthy case, instead of only one.") |