leo/compiler/tests/input_files/program_input/main_array.leo
2021-02-11 10:46:20 -05:00

4 lines
88 B
Plaintext

function main (x: [i16; 1]) {
console.log("{}", x);
console.assert(x[0] == 0);
}