leo/tests/compiler/scalar/eq.leo

12 lines
190 B
Plaintext
Raw Normal View History

2022-05-15 06:27:08 +03:00
/*
namespace: Compile
expectation: Pass
input_file:
- inputs/scalars.in
*/
function main(a: scalar, b: scalar) -> bool {
let c: bool = a == b;
let d: bool = a != b;
return d;
2022-05-15 06:27:08 +03:00
}