Help for this page
my @i=(1,2); my @j=(3,4); ... say $i; say $j; }
my @i=(1,2); my @j=(3,4,5); ... print $i."\n"; print $j."\n"; }