mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-23 17:43:06 +03:00
5 lines
99 B
Plaintext
5 lines
99 B
Plaintext
function main(s: bool, a: i16, b: i16, c: i16) {
|
|
let r = if s ? a : b;
|
|
|
|
assert_eq!(r, c);
|
|
} |