!= didn't work either - missed it in the builtins at the top of ASTTransformation.cpp

This commit is contained in:
Nathan Braswell
2015-03-16 06:24:59 -04:00
parent 78d16c5510
commit 111e5a373e
4 changed files with 15 additions and 2 deletions

10
tests/test_nequals.krak Normal file
View File

@@ -0,0 +1,10 @@
import io:*;
|int| main() {
if (1 != 2)
println("Correct");
}