mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
19 lines
159 B
Plaintext
19 lines
159 B
Plaintext
module test;
|
|
import std;
|
|
|
|
fn int main()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
module foo @test;
|
|
interface Bob
|
|
{
|
|
fn void test();
|
|
}
|
|
struct Foo
|
|
{
|
|
int a;
|
|
}
|
|
fn void Foo.test(&self) {}
|