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