11 lines
184 B
Plaintext
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;
|
|
}
|
|
}
|