Files
c3c/resources/testproject/foo.c3
2021-05-23 13:16:48 +02:00

20 lines
220 B
Plaintext

module baz::foo;
import bar;
public struct Foo
{
int a;
}
extern func void printf(char *hello);
func void ofke()
{}
func void exple() {}
public func void test()
{
printf("Hello from baz::foo::test()!\n");
}