Help for this page

Select Code to Download


  1. or download this
    use strict("refs"); 
    or simply
    use strict;
    
  2. or download this
    $a = 666;
    $b = 888;
    ...
    $name = "b";
    print $$name, "\n";
    
  3. or download this
    $name = "a";
    &$name;
    ...
    sub b {
        print "in sub b\n";
    }