mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-20 16:11:35 +03:00
14 lines
170 B
Plaintext
14 lines
170 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
inputs:
|
|
- i64.in: |
|
|
[main]
|
|
a: i64 = 1;
|
|
b: i64 = 1;
|
|
*/
|
|
|
|
function main(a: i64, b: i64) {
|
|
console.assert(a == b);
|
|
}
|