mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-21 08:31:33 +03:00
14 lines
175 B
Plaintext
14 lines
175 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
inputs:
|
|
- i128.in: |
|
|
[main]
|
|
a: i128 = 1;
|
|
b: i128 = 1;
|
|
*/
|
|
|
|
function main(a: i128, b: i128) {
|
|
console.assert(a == b);
|
|
}
|