leo/compiler/tests/integers/u32/pow.leo

3 lines
56 B
Plaintext
Raw Normal View History

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