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