leo/tests/compiler/integers/u128/pow.leo

4 lines
77 B
Plaintext
Raw Normal View History

2021-05-10 21:11:31 +03:00
function main(a: u128, b: u128, c: u128) -> bool {
return a ** b == c;
}