Missing != operator, added test for all of them.

This commit is contained in:
Marvin Blum
2015-10-25 13:15:51 +01:00
parent 2e7e198047
commit 9db5c2042d
5 changed files with 62 additions and 5 deletions

3
test/parser_operator.asl Normal file
View File

@@ -0,0 +1,3 @@
if x == y && x != y && x <= y && x >= y && x < y && x > y {
// ...
}