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

3 lines
72 B
Plaintext

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