leo/compiler/tests/input_files/program_input/main_array.leo

4 lines
88 B
Plaintext
Raw Normal View History

2021-02-10 20:49:18 +03:00
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);
2020-12-17 00:02:31 +03:00
}