{ # Scope 1 our $s = "foo"; # Sets $main::s } { # Different scope. print our $s; # *Same* variable! } __END__ foo