Fix compiler bugs and text_editor

This commit is contained in:
Krzosa Karol
2024-06-10 06:56:53 +02:00
parent 39cb9cb4b4
commit f8cf91ed2a
13 changed files with 493 additions and 23 deletions

View File

@@ -0,0 +1,8 @@
import b "second";
main :: proc(): int {
a: int;
b.cool_variable = &a;
b.other_thing();
return 0;
}