Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#!perl
use strict;
use warnings;
my @tst=([1,2],[1,2,3],[1,2,3,4],[1,2,3,4,5]);
print "num\thighest\tarray\n";
print "elems\tindex\telement\n";
for (@tst) {
print scalar(@$_), "\t", $#$_, "\t[", join(",", @$_), "]\n";
}
num highest array
elems index element
2 1 [1,2]
3 2 [1,2,3]
4 3 [1,2,3,4]
5 4 [1,2,3,4,5]