http://www.perlmonks.org?node_id=952588


in reply to Re^3: RFC: Tutorial: use strict; now what!?
in thread RFC: Tutorial: use strict; now what!?

Please show me the matching problem code?

I'm not the guy you kill, I'm the guy you buy. —Michael Clayton

Replies are listed 'Best First'.
Re^5: RFC: Tutorial: use strict; now what!?
by runrig (Abbot) on Feb 08, 2012 at 22:01 UTC
    our $dog; my $pet = 'dog'; ${ $pet } = 'Rover'; # no strict 'refs' print "$dog\n";