leo/tests/compiler/integers/i64/sub.leo

18 lines
244 B
Plaintext
Raw Normal View History

2021-05-10 20:19:19 +03:00
/*
namespace: Compile
expectation: Pass
inputs:
- i64.in: |
[main]
a: i64 = 100;
b: i64 = 50;
c: i64 = 50;
[registers]
r0: bool = false;
*/
function main(a: i64, b: i64, c: i64) -> bool {
return a - b == c;
}