13 lines
150 B
Plaintext
13 lines
150 B
Plaintext
[export] main = fn [cc(c)] () s32
|
|
{
|
|
>result: s32 = 1;
|
|
if (result != 1)
|
|
{
|
|
return 1;
|
|
}
|
|
else
|
|
{
|
|
return 0;
|
|
}
|
|
}
|