Help for this page

Select Code to Download


  1. or download this
    while (my ($key, $value) = $array->each) { 
      last if some_condition($key, $value); 
    }
    
  2. or download this
    #!perl -l
    my %hash=(1..10);
    ...
    Second: 9 10
    Second: 5 6