mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-21 08:31:33 +03:00
18 lines
246 B
Plaintext
18 lines
246 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
inputs:
|
|
- i128.in: |
|
|
[main]
|
|
a: i128 = 1;
|
|
b: i128 = 2;
|
|
c: i128 = 3;
|
|
|
|
[registers]
|
|
r0: bool = true;
|
|
*/
|
|
|
|
function main(a: i128, b: i128, c: i128) -> bool {
|
|
return a + b == c;
|
|
}
|