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