leo/tests/compiler/integers/i32/eq.leo
2021-04-19 18:08:14 -07:00

3 lines
75 B
Plaintext

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