mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-29 21:22:55 +03:00
5 lines
108 B
Plaintext
5 lines
108 B
Plaintext
|
function main(s: bool, a: i128, b: i128, c: i128) {
|
||
|
let r = if s ? a : b;
|
||
|
|
||
|
console.assert(r == c);
|
||
|
}
|