- or download this
open( HANDLE, "<file");
while( my($line) = <HANDLE> )
{
print $line;
}
- or download this
my($var);
my($othervar) = 43;
- or download this
my $var;
my $othervar = 43;
- or download this
my($var1, $var2, $var3);
- or download this
"You really probably want to be using `my' instead,
because `local' isn't what most people think of as
"local"."