Help for this page

Select Code to Download


  1. or download this
    ll_new( $x, < any perl expression > )
    
  2. or download this
    ll_new( $x, memoize( sub { < any perl expression > } ) )
    
  3. or download this
    ll_new( $x, sub { < any perl expression > } )
    
  4. or download this
    $fibs = ll_new(
      0,
    ...
        }
      )
    );
    
  5. or download this
    
    $fibs = ll_new( 0, ll_new( 1, ll_add( tail( $fibs ), $fibs ) ) );
    
  6. or download this
    fibs = 0:1:[a+b| (a,b) <- zip fibs (tail fibs) ]