RosettaCodeData/Task/Introspection/Perl/introspection-2.pl
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

3 lines
228 B
Perl

#$bloop = -123; # uncomment this line to see the difference
no strict 'refs'; # referring to variable by name goes against 'strict' pragma
if (defined($::{'bloop'})) {print abs(${'bloop'})} else {print "bloop isn't defined"};