2021-05-05 17:35:34 +03:00
|
|
|
/*
|
|
|
|
namespace: Compile
|
|
|
|
expectation: Pass
|
|
|
|
input_file: input/main_array.in
|
|
|
|
*/
|
|
|
|
|
|
|
|
function main(x: [i16; 1]) {
|
2020-12-17 00:02:31 +03:00
|
|
|
console.log("{}", x);
|
2021-02-11 18:46:20 +03:00
|
|
|
console.assert(x[0] == 0);
|
2021-05-05 17:35:34 +03:00
|
|
|
}
|