- or download this
@t_arr2 = ("one", "two", "three");
...
print "$str1->[1]\n";
print "$str1->[2]\n";
}
- or download this
@t_arr2 = ("one", "two", "three");
push(@t_arr, [@t_arr2]);
...
print "$str1->[1]\n";
print "$str1->[2]\n";
}
- or download this
four
five
...
four
five
six
- or download this
one
two
...
four
five
six
- or download this
#!/usr/bin/perl -w
use strict;