diff options
author | dec05eba <dec05eba@protonmail.com> | 2019-08-01 20:36:51 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-07-25 14:36:46 +0200 |
commit | 4ca3b74621c3608de42a91730a71892d9d7c27b5 (patch) | |
tree | ae6ed7a1c37fc7fe32b3f763b839e65fe6becbeb /tests | |
parent | 0f26e1d204d3a3026ca3edfc4c6bd9638b2632e7 (diff) |
Remove nullable... it's bad to have magic. Static analysis can do it instead
Diffstat (limited to 'tests')
-rw-r--r-- | tests/bytecode.amal | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bytecode.amal b/tests/bytecode.amal index 3484b21..799733b 100644 --- a/tests/bytecode.amal +++ b/tests/bytecode.amal @@ -6,7 +6,7 @@ const main = fn { const value2: i64 = 23; const value3 = 2 + 5 - 1 * 10 / 2; const str_value = "hello, world"; - printf(); + //printf(); } const print = fn { |