bloat-buster/tests/if_no_else.bbb

10 lines
115 B
Plaintext

[export] main = fn [cc(c)] () s32
{
>a: s32 = 5;
if (a == 2)
{
return 1;
}
return 0;
}