mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
15 lines
126 B
Plaintext
15 lines
126 B
Plaintext
module test;
|
|
|
|
<*
|
|
@param [out] bar
|
|
*>
|
|
fn void foo(int[2]* bar)
|
|
{
|
|
(*bar)[0] = 1;
|
|
bar.[0] = 1;
|
|
}
|
|
|
|
fn int main()
|
|
{
|
|
return 0;
|
|
} |