Files
c3c/test/test_suite/module/module_short.c3t

10 lines
100 B
Plaintext

module a;
import b, std;
fn void main()
{
io::printn(b::test());
}
module b;
fn int test() => 37;