Help for this page

Select Code to Download


  1. or download this
    # This software is Copyright 2005 by Elsevier Inc.  You may use it
    # under the terms of the license at http://perl.plover.com/hop/LICENSE
    +.txt .
    ###
    ...
    my $it = upto(3,5);
    my $value->it();
    print "$value\n";
    
  2. or download this
    sub upto {
      my ($m, $n) = @_;
      return Iterator {
    ...
      };
    }
    sub Iterator (&) { return $_[0]; }