Go/BCPL style semicolon insertion during tokenizing stage

This commit is contained in:
Ginger Bill
2016-12-05 23:39:26 +00:00
parent 88aa74bbb9
commit a16bdb215a
18 changed files with 3025 additions and 2906 deletions
+4 -14
View File
@@ -1,18 +1,8 @@
#import "fmt.odin";
A :: type struct {
b: B;
};
B :: type struct {
c: C;
};
C :: type struct {
a: A;
};
#import "fmt.odin"
main :: proc() {
fmt.println(size_of(A));
fmt.println(size_of(B));
fmt.println(size_of(C));
if true {
}
}