- or download this
#! /usr/bin/perl -w
use strict;
...
print $_;
}
}
- or download this
#! /usr/bin/perl -w
use strict;
my $message = "Hello Lucy!";
print "$message";
- or download this
#! /usr/bin/perl -w
use strict;
...
for ($i=0;$i<$count;$i++) {
print "\@value[$i] = $value[$i]\n";
}