mirror of
https://github.com/AleoHQ/leo.git
synced 2024-11-29 11:43:28 +03:00
5 lines
105 B
Plaintext
5 lines
105 B
Plaintext
function main(s: bool, a: group, b: group, c: group) {
|
|
let r = if s ? a : b;
|
|
|
|
assert_eq!(r, c);
|
|
} |