mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
16 lines
181 B
Plaintext
16 lines
181 B
Plaintext
module std::core::env;
|
|
const bool FOO = true;
|
|
|
|
module foo @if(env::FOO);
|
|
struct Foo { int a; }
|
|
|
|
module bar;
|
|
import std, foo;
|
|
|
|
fn void Foo.baz(self) {}
|
|
|
|
fn int main()
|
|
{
|
|
return 0;
|
|
}
|