diff options
author | nea <nea@nea.moe> | 2023-08-15 20:24:01 +0200 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-08-15 20:24:01 +0200 |
commit | 54b0f2ea841d2ce3895713415481271aa3034b30 (patch) | |
tree | 401775e9ce327506546fa614e79decb667ab1aa4 /res/builtins.lisp | |
parent | d1f49743a0a00a1156272d174e8b6b5c4bb9acec (diff) | |
download | nealisp-54b0f2ea841d2ce3895713415481271aa3034b30.tar.gz nealisp-54b0f2ea841d2ce3895713415481271aa3034b30.tar.bz2 nealisp-54b0f2ea841d2ce3895713415481271aa3034b30.zip |
Add support for hex literals
Diffstat (limited to 'res/builtins.lisp')
-rw-r--r-- | res/builtins.lisp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/res/builtins.lisp b/res/builtins.lisp index 64c59d3..19bab1f 100644 --- a/res/builtins.lisp +++ b/res/builtins.lisp @@ -28,6 +28,9 @@ (defun gt (l r) (lt r l)) (export gt) +(comment "The absolute value returns the argument if it is non negative or (- 0 arg) if it is") +(defun abs (arg) (if (lt arg 0) (- 0 arg) arg)) +(export abs) (comment "if! a strict version of a regular if, meaning it evaluates both the falsy and the truthy case, instead of only one.") (defun if! (cond ifTrue ifFalse) (if cond ifTrue ifFalse)) |