David Gonzalez Martin 45306355e9 Else if
2024-06-01 10:12:35 -06:00

11 lines
184 B
Plaintext

fn [cc(.c)] main [export] () s32 {
>result: s32 = 0;
if (result > 0) {
return 1;
} else if (result == 0) {
return 0;
} else {
return 1;
}
}