Help for this page

Select Code to Download


  1. or download this
    sub a1 {
      local *c = shift;
      $c{a} = 'a';
    }
    
  2. or download this
    sub f {
      use vars qw(%d);
      local *d = shift;
      $d{f}='f';
    }
    
  3. or download this
    sub f {
      our %d;
      local *d = shift;
      $d{f}='f';
    }