leo/compiler/tests/integers/u128/mul.leo
2020-06-07 21:26:49 -07:00

3 lines
58 B
Plaintext

function main(a: u128, b: u128) -> u128 {
return a * b
}