- or download this
my $foo; # Predeclared: bad style
...
...
print $foo;
- or download this
my $foo;
...
print $foo; # No error, just a warning at run time.
- or download this
my $foo = foo(); # Declared when needed
...
print $foo;
- or download this
...
print $foo; # Error at compile time!