aboutsummaryrefslogtreecommitdiff
path: root/neb/std/boolean.py
diff options
context:
space:
mode:
authormryouse2022-07-20 20:55:13 +0000
committermryouse2022-07-20 20:55:13 +0000
commit2541ae567a2aeffe1144c249b2ec1db0a34dedef (patch)
tree880296298dce819040a280503ea9118226db8ab9 /neb/std/boolean.py
parent454a7bbc16f1967d3e7e41089618f63a533cc2eb (diff)
bugfix: missing register for 'not'
Diffstat (limited to 'neb/std/boolean.py')
-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)