leo/compiler/tests/integers/u64/mul.leo
2020-08-16 19:14:26 -07:00

3 lines
73 B
Plaintext

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