Help for this page

Select Code to Download


  1. or download this
    sub btween (\%$$)
      {
    ...
      }
    
    print "There are ", btween(%hash, 0, 60), " clips between 0-1 minutes\
    +n";
    
  2. or download this
    sub btween (\%$$)
      {
    ...
    
    my @result = btween(%hash, 0, 60);
    print "There are $result[0] clips between 0-1 minutes, and their names
    + are: $result[1]\n";