bugfix in lexer

This commit is contained in:
edraft
2020-05-23 13:40:51 +02:00
parent aa0be5507e
commit d66ea29d8f
14 changed files with 42 additions and 51 deletions

View File

@@ -16,16 +16,17 @@ lib Main {
output(test);
output(false);
if (testBool != empty) {
/*if (testBool != empty) {
output(testEmpty);
}
}*/
test1234(range(0, 10));
}
public func test1234(param: list) {
for i in range(0, length(param)) {
/*for i in range(0, length(param)) {
output(i);
}
}*/
pass;
}
}
}