1
1
mirror of https://github.com/ProvableHQ/leo.git synced 2024-12-29 13:14:05 +03:00
leo/compiler/tests/integers/i8/pow.leo
2020-08-16 19:14:26 -07:00

3 lines
71 B
Plaintext

function main(a: i8, b: i8, c: i8) {
console.assert(a ** b == c);
}