mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-25 19:22:01 +03:00
14 lines
194 B
Plaintext
14 lines
194 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
inputs:
|
|
- i8.in: |
|
|
[main]
|
|
a: i8 = 100;
|
|
b: i8 = 50;
|
|
c: i8 = 50;
|
|
*/
|
|
|
|
function main(a: i8, b: i8, c: i8) {
|
|
console.assert(a - b == c);
|
|
} |