summaryrefslogtreecommitdiff
path: root/res/builtins.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'res/builtins.lisp')
-rw-r--r--res/builtins.lisp8
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)
+
+