Help for this page

Select Code to Download


  1. or download this
    $hash{a} = 0;
    $hash{b} = 1;
    $hash{c} = 0;
    $hash{d} = 3;
    
  2. or download this
    a = 0
    c = 0
    b = 1
    d = 3
    
  3. or download this
    c = 0
    a = 0
    b = 1
    d = 3
    
  4. or download this
    foreach my $k ( sort { $hash{$a} <=> $hash{$b}  } keys %hash  ) {
        print "$k = $hash{$k}\n";
    }