diff options
author | Daniel Cerqueira <dan.git@lispclub.com> | 2025-05-30 10:22:02 +0100 |
---|---|---|
committer | Daniel Cerqueira <dan.git@lispclub.com> | 2025-05-30 10:22:02 +0100 |
commit | 10c73ef997292ace6b22bce1b8244f27161b4e9d (patch) | |
tree | ee76fe4c1035c5d67cdc543fd1dccdae67afb709 /liblali.c | |
parent | 2b03b74037e5844c4bc05e9febda45e560a46f42 (diff) |
remove ! operator
Diffstat (limited to 'liblali.c')
-rw-r--r-- | liblali.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1027,7 +1027,7 @@ DEFINE_PRIMITIVE_ARITHMETIC(primitiveRemainder, %, "+1", atoi, int , "%d" , "+%d } \ } -DEFINE_PRIMITIVE_RELATIONAL(primitiveDifferent, !=, false) +/* DEFINE_PRIMITIVE_RELATIONAL(primitiveDifferent, !=, false) */ /* DEFINE_PRIMITIVE_RELATIONAL(primitiveEqual, ==, true) */ DEFINE_PRIMITIVE_RELATIONAL(primitiveLess, < , true) /* DEFINE_PRIMITIVE_RELATIONAL(primitiveLessEqual, <=, true) */ @@ -1101,7 +1101,7 @@ Primitive primitives[] = { { "/", 1, -1, primitiveDivide }, { "%", 1, -1, primitiveRemainder }, /* { "=", 1, -1, primitiveEqual }, */ - { "!", 1, -1, primitiveDifferent }, + /* { "!", 1, -1, primitiveDifferent }, */ { "<", 1, -1, primitiveLess }, /* { "<=", 1, -1, primitiveLessEqual }, */ { ">", 1, -1, primitiveGreater }, |