mirror of
https://github.com/Kugelschieber/asl.git
synced 2026-09-13 12:31:49 +00:00
Started testing with tokenizer.
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
each allUnits {
|
||||
// ...
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
for var i = 0; i < 100; i = i+1 {
|
||||
// ...
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
func TestFunction(param0, param1) {
|
||||
return true;
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
if a < b {
|
||||
// ...
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
// single line comment
|
||||
|
||||
/*
|
||||
multi
|
||||
line
|
||||
comment
|
||||
*/
|
||||
|
||||
var x = 1;
|
||||
@@ -0,0 +1,3 @@
|
||||
while true {
|
||||
// ...
|
||||
}
|
||||
Reference in New Issue
Block a user