1
1
mirror of https://github.com/ProvableHQ/leo.git synced 2024-12-22 17:51:39 +03:00
leo/asg/tests/pass/integers/u8/ge.leo
2021-01-25 07:19:38 -08:00

3 lines
73 B
Plaintext

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