Basic parser, fixed bug in tokenizer.

This commit is contained in:
Marvin Blum
2015-09-21 14:46:39 +02:00
parent 651c7451d1
commit 9754def486
6 changed files with 154 additions and 7 deletions

View File

@@ -1,2 +1,9 @@
var a = 1;
var b = 2;
var _a = 1;
var _b = 2;
if _a < _b {
var _x = 5;
}
else{
var _x = 6;
}