8 lines
116 B
Plaintext
8 lines
116 B
Plaintext
import b "second";
|
|
|
|
main :: proc(): int {
|
|
a: int;
|
|
b.cool_variable = &a;
|
|
b.other_thing();
|
|
return 0;
|
|
} |