Files
lib_compiler/tests/accessing_variable_across_modules/second/second.lc
2024-06-10 06:56:53 +02:00

7 lines
79 B
Plaintext

cool_variable: *int;
other_thing :: proc(): int {
a := 0;
return a;
}