7 lines
94 B
Plaintext
7 lines
94 B
Plaintext
let main = (i: int) =>
|
|
if (((i == 2): bool)) {
|
|
(42: int);
|
|
} else {
|
|
(0: int);
|
|
};
|