mirror of
https://github.com/AleoHQ/leo.git
synced 2025-01-08 11:08:41 +03:00
5 lines
96 B
Plaintext
5 lines
96 B
Plaintext
function main(s: bool, a: i8, b: i8, c: i8) {
|
|
let r = if s ? a : b;
|
|
|
|
assert_eq!(r, c);
|
|
} |