mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-21 00:21:47 +03:00
11 lines
170 B
Plaintext
11 lines
170 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: input/main_array.in
|
|
*/
|
|
|
|
function main(const x: [i16; 1]) {
|
|
console.log("{}", x);
|
|
console.assert(x[0] == 0);
|
|
}
|