leo/compiler/tests/address/ternary.leo

8 lines
267 B
Plaintext
Raw Normal View History

2020-07-30 10:15:14 +03:00
function main(s: bool, c: address) {
const a = address(aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8);
const b = address(aleo18qgam03qe483tdrcc3fkqwpp38ehff4a2xma6lu7hams6lfpgcpq3dq05r);
const r = s? a: b;
2020-07-30 10:15:14 +03:00
2020-08-17 03:20:47 +03:00
console.assert(r == c);
}