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