Improved parsing

This commit is contained in:
Sven Heidemann
2020-09-17 19:33:52 +02:00
parent cb54261118
commit dfc4b44b25
31 changed files with 717 additions and 189 deletions

View File

@@ -1,12 +1,12 @@
lib Tests {
public class test2 {
var string_a = string1();
var string_a = strings();
public func continue(): void {
input(string_a.string1 + ': ');
}
}
class strings {
var public string1 = "hello world";
public var string1 = "hello world";
}
}