leo/compiler/tests/field/mul.leo

3 lines
73 B
Plaintext

function main(a: field, b: field, c: field) {
assert_eq!(a * b, c);
}