mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
20 lines
214 B
C
20 lines
214 B
C
module baz::foo;
|
|
|
|
import bar;
|
|
|
|
struct Foo
|
|
{
|
|
int a;
|
|
}
|
|
|
|
extern fn void printf(char *hello);
|
|
|
|
private fn void ofke()
|
|
{}
|
|
|
|
private fn void exple() {}
|
|
|
|
fn void test()
|
|
{
|
|
printf("Hello from baz::foo::test()!\n");
|
|
} |