mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-24 01:54:23 +03:00
5 lines
102 B
Plaintext
5 lines
102 B
Plaintext
|
function main(s: bool, a: i8, b: i8, c: i8) {
|
||
|
let r = if s ? a : b;
|
||
|
|
||
|
console.assert(r == c);
|
||
|
}
|