diff options
| -rw-r--r-- | neb/std/boolean.py | 1 |
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) |
