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