From 6fd84cc7befb8a539996a948c7b982cb4921cbfe Mon Sep 17 00:00:00 2001 From: Maxwell Jeffress Date: Mon, 15 Dec 2025 11:34:56 +1100 Subject: [PATCH] Fix bug with not --- src/interpreter.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/interpreter.c b/src/interpreter.c index 709459e..7e675c5 100644 --- a/src/interpreter.c +++ b/src/interpreter.c @@ -1287,6 +1287,7 @@ GroundValue interpretGroundInstruction(GroundInstruction inst, GroundScope* scop bool condition = !in->args.args[0].value.value.data.boolVal; addVariable(scope->variables, in->args.args[1].value.refName, createBoolGroundValue(condition)); + break; } case GREATER: { if (in->args.length < 3) {