Help for this page
use strict; use warnings; ... { print our $foo; # prints: Hello, world! }
use strict; use warnings; ... { print my $foo; # warns: Use of uninitialized value }