leo/compiler/tests/integers/i128/le.leo
2020-08-16 19:14:26 -07:00

3 lines
77 B
Plaintext

function main(a: i128, b: i128, c: bool) {
console.assert(a <= b == c);
}