bloat-buster/tests/else_if.bbb
2025-04-17 14:07:55 -06:00

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;
}
}