diff options
author | nea <nea@nea.moe> | 2023-08-12 02:36:05 +0200 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-08-12 02:36:05 +0200 |
commit | d1f49743a0a00a1156272d174e8b6b5c4bb9acec (patch) | |
tree | 72c8bee0dd7808463f218b2dd61ed1d1c036a8dd /res/builtins.lisp | |
parent | 3ff093ebd46b32af8c9f1c73e2c147bbb1f1ef62 (diff) | |
download | nealisp-d1f49743a0a00a1156272d174e8b6b5c4bb9acec.tar.gz nealisp-d1f49743a0a00a1156272d174e8b6b5c4bb9acec.tar.bz2 nealisp-d1f49743a0a00a1156272d174e8b6b5c4bb9acec.zip |
Add hash support
Diffstat (limited to 'res/builtins.lisp')
-rw-r--r-- | res/builtins.lisp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/res/builtins.lisp b/res/builtins.lisp index d1828f6..64c59d3 100644 --- a/res/builtins.lisp +++ b/res/builtins.lisp @@ -52,3 +52,11 @@ (defun not (v) (if v false true)) (defun ^ (l r) (if l (not r) r)) (export | & not ^) + +(comment "Re-export hashes") +(def hash.new core.newhash) +(def hash.merge core.mergehash) +(def hash.get core.gethash) +(export hash.new hash.merge hash.get) + + |