Help for this page

Select Code to Download


  1. or download this
    
    sub tail {
    ...
            else { return $s->[1] }
    }
    
  2. or download this
    
    sub upto {
    ...
            node( $m, promise { upto($m+1, $n) } );
    }
    
  3. or download this
    
    sub promise (&) { $_[0] }
    
  4. or download this
    
    sub node {
    ...
            return [$head, $tail];
    }
    
  5. or download this
    
    'Can't call method "promise" on an undefined value.'
    
  6. or download this
    
    Odd number of elements in anonymous hash at stream.pl line 19.
    Use of uninitialized value in anonymous hash ({}) at stream.pl line 19
    +.
    
  7. or download this
    
            node( $m, promise ( upto($m+1, $n) ) );