mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-21 00:21:47 +03:00
16 lines
255 B
Plaintext
16 lines
255 B
Plaintext
// namespace: Compile
|
|
// expectation: Pass
|
|
// inputs:
|
|
// - u8_f.in: |
|
|
// [main]
|
|
// a: u8 = 2;
|
|
// b: u8 = 2;
|
|
// c: u8 = 4;
|
|
|
|
// [registers]
|
|
// r0: bool = true;
|
|
|
|
function main(a: u8, b: u8, c: u8) -> bool {
|
|
return a ** b == c;
|
|
}
|