Help for this page
# Not using strict, for demonstration. ... # We're in the same lexical scope!! print "Foo is: $foo\n"; }
use strict; ... sub mistake { print $foo; # Works, and prints blah }