aboutsummaryrefslogtreecommitdiff
path: root/neb
diff options
context:
space:
mode:
Diffstat (limited to 'neb')
-rw-r--r--neb/std/boolean.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/neb/std/boolean.py b/neb/std/boolean.py
index f9326ee..0041d22 100644
--- a/neb/std/boolean.py
+++ b/neb/std/boolean.py
@@ -34,4 +34,5 @@ def interpretNot(symbol, args, env, ns):
not_arg = Arg("not", TypeEnum.BOOL)
not_func = Builtin("not", interpretNot, [not_arg], return_type=Type(":bool"))
not_multi = MultiFunction("not")
+not_multi.register(not_func)
BOOLEAN.register("not", not_multi)