Help for this page

Select Code to Download


  1. or download this
    my %hash = ('a'=>'test');
    
    my @arr = delete $hash{'a'};
    
    print $arr[0]."\n";
    
  2. or download this
    %h = qw[ the quick black fiend jumps over the lazy god child ];;
    
    ...
    
    pp \%h;;
    { jumps => "over" }