huge refactor, can now define structs out of order

This commit is contained in:
2025-04-11 01:57:10 -04:00
parent f6a6761262
commit 31c16a263b
24 changed files with 765 additions and 566 deletions

View File

@@ -31,7 +31,7 @@ fn start() {
};
println("after");
print(tester());
let test = Test {
let test: Test = Test {
a: 10,
b: 4,
c: 0,
@@ -59,7 +59,7 @@ fn structer(test: Test) {
print_dec(test.c);
println("");
let test2 = Test2 {
let test2: Test2 = Test2 {
a: 3,
b: test,
c: test,