Mega Code Archive

 
Categories / Perl / Language Basics
 

No strict refs

use strict 'refs'; $variable = 100; {     no strict 'refs';     $variablename = "variable";     print $$variablename; }