Files
lib_compiler/tests/test_build_if_import/main/main.lc
2024-04-13 15:29:53 +02:00

8 lines
94 B
Plaintext

import "a";
import "b";
main :: proc(): int {
a := A();
b := B();
return a + b;
}