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

4 lines
74 B
Plaintext

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