use strict; use warnings; { our $foo = "Hello, world!\n"; } { print our $foo; # prints: Hello, world! } #### use strict; use warnings; { my $foo = "Hello, world!\n"; } { print my $foo; # warns: Use of uninitialized value }