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