Help for this page

Select Code to Download


  1. or download this
    foreach (sort keys %$hash_ref) { print; }
    
  2. or download this
    $foo = \$bar;
    print $$foo;
    ...
    
    $foo = \%bar;
    print for sort keys %$bar;