leo/tests/compiler/integers/u128/pow.leo
2021-05-10 21:11:31 +03:00

4 lines
77 B
Plaintext

function main(a: u128, b: u128, c: u128) -> bool {
return a ** b == c;
}