1
1
mirror of https://github.com/AleoHQ/leo.git synced 2025-01-07 02:19:52 +03:00
leo/asg/tests/pass/integers/u8/lt.leo

3 lines
72 B
Plaintext
Raw Normal View History

2021-01-25 18:17:42 +03:00
function main(a: u8, b: u8, c: bool) {
console.assert(a < b == c);
}