12 lines
117 B
Plaintext
12 lines
117 B
Plaintext
S = struct
|
|
{
|
|
self: &S,
|
|
}
|
|
|
|
[export] main = fn [cc(c)] () s32
|
|
{
|
|
>s: S = zero;
|
|
s.self = &s;
|
|
return 0;
|
|
}
|