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