mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
24 lines
178 B
Plaintext
24 lines
178 B
Plaintext
module foo;
|
|
|
|
const int GLOBAL = 0;
|
|
|
|
struct Boo
|
|
{
|
|
int i;
|
|
union
|
|
{
|
|
int death;
|
|
};
|
|
}
|
|
|
|
func void test()
|
|
{
|
|
int i = 0;
|
|
i++;
|
|
if (i < 100)
|
|
{
|
|
int j = 0;
|
|
j += i;
|
|
return;
|
|
}
|
|
} |