Files
c3c/resources/testproject/src/foo.c3
Christoffer Lerno 3221180315 Fixes to `"exec" use.
2025-01-22 00:26:40 +01:00

20 lines
215 B
Plaintext

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