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