6 lines
97 B
Plaintext
6 lines
97 B
Plaintext
const main = fn () s32 {
|
|
const a: s32 = 5;
|
|
const b: s32 = 4;
|
|
return 5 * 4 - a * b;
|
|
}
|