- or download this
my $foo;
- or download this
foreach ( $foo ) {
print "$_\n";
}
- or download this
my @foo;
- or download this
foreach ( @foo ) {
print "array[x] = $_\n";
}
- or download this
my @array
$array[0] = "";
- or download this
#!/path/to/your/perl -w
use strict;