diff options
| author | mryouse | 2022-07-20 20:55:13 +0000 |
|---|---|---|
| committer | mryouse | 2022-07-20 20:55:13 +0000 |
| commit | 2541ae567a2aeffe1144c249b2ec1db0a34dedef (patch) | |
| tree | 880296298dce819040a280503ea9118226db8ab9 /neb/std | |
| parent | 454a7bbc16f1967d3e7e41089618f63a533cc2eb (diff) | |
bugfix: missing register for 'not'
Diffstat (limited to 'neb/std')
| -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) |
