leo/tests/compiler/scalar/mul.leo
2022-05-14 20:27:08 -07:00

10 lines
157 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file:
- inputs/scalars.in
*/
function main(a: scalar, b: scalar, c: scalar) -> bool {
return a * b == c;
}