diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/bytecode.amal | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/bytecode.amal b/tests/bytecode.amal index 096f921..0aad6de 100644 --- a/tests/bytecode.amal +++ b/tests/bytecode.amal @@ -4,10 +4,12 @@ extern const print_extern_num: fn(num: i32); const main = fn { var value = 23; value = 34; - const value2: i64 = 23; + const value2: i64 = 54; 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); } |