aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2019-08-21 06:08:00 +0200
committerdec05eba <dec05eba@protonmail.com>2020-07-25 14:36:46 +0200
commitc68fe7634341e97c3246b627a20fa9487586ffcb (patch)
tree78d499cc090439fa8fe087105e52f771d7728d23 /tests
parentf24139d455af3a179fe1d19c951e4cd85744c592 (diff)
hash map contains
Diffstat (limited to 'tests')
-rw-r--r--tests/bytecode.amal4
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);
}