leo/tests/compiler/scalar/mul.leo

10 lines
157 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, c: scalar) -> bool {
return a * b == c;
}