initial structure impl

This commit is contained in:
2025-03-26 21:39:24 -04:00
parent 0614d48fcc
commit 021434d2f1
23 changed files with 390 additions and 84 deletions

View File

@@ -1,11 +1,24 @@
struct Test {
a: 64,
b: 64,
}
fn start() {
println("Helld!");
println("Hello World!!!!!");
thinger();
println("what");
print(tester());
let test = Test {
a: 10,
b: 9,
};
arger("a", "b", "c");
exit(mul(sub(add(5, 9), 1), 3));
let z = sub(test.a, 10);
exit(add(mul(sub(add(5, test.b), 1), 3), z));
}
fn structer(test: Test) {
}
fn thinger() {