aboutsummaryrefslogtreecommitdiff
path: root/tests/bytecode.amal
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bytecode.amal')
-rw-r--r--tests/bytecode.amal5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/bytecode.amal b/tests/bytecode.amal
index 32c1ccb..ef255cd 100644
--- a/tests/bytecode.amal
+++ b/tests/bytecode.amal
@@ -12,9 +12,8 @@ const main = fn {
const value3 = 2 + 5 - 1 * 10 / 2;
const str_value = "hello, world";
print();
- //if value2 == 54
- // const result = print_num(1337);
- const result = print_num(1337);
+ if value2 == 54
+ const result = print_num(1337);
}
const print_num = fn(num: i32) i32 {