1
1
mirror of https://github.com/ProvableHQ/leo.git synced 2024-12-25 19:22:01 +03:00
leo/compiler/tests/integers/i64/sub.leo
2020-08-16 19:14:26 -07:00

3 lines
73 B
Plaintext

function main(a: i64, b: i64, c: i64) {
console.assert(a - b == c);
}