use strict; use warnings; our $value = "Valuable information"; print 'this is what we have: '; NO_STRICT_BLOCK: { my $value = 'Ha ha, I changed it!'; no strict "refs"; print ${"value"}; }