Help for this page

Select Code to Download


  1. or download this
    sub fubar {
         my $ref = shift;
         ${$ref} = 4;
         print "$$ref\n";
      }
    
  2. or download this
    feebar(\$blahblah);
    sub feebar {
    ...
       $$ref = 4;
       print "$$ref\n";
    }