- or download this
14:08 >perl -wE "my @a = (1, 3, 7); say @a; say [@a]; say length[@a];"
137
...
15
14:11 >
- or download this
for ($ctr = $#data_array; $ctr >= 0; $ctr--) {
- or download this
for (reverse 0 .. $#data_array) {
- or download this
14:49 >perl -wE "my @x = (12, 34, 567); say $x[3];"
Use of uninitialized value in say at -e line 1.
14:50 >