leo/tests/compiler/input_files/program_input/main_array.leo
2021-04-19 18:08:14 -07:00

4 lines
88 B
Plaintext

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