Changes between Initial Version and Version 2 of Ticket #54

Show
Ignore:
Timestamp:
07/24/07 05:44:38 (6 years ago)
Author:
ross
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #54

    • Property component changed from build system to hugs
  • Ticket #54 – description

    initial v2  
     1{{{ 
    12Main> fvsp 450 
    23INTERNAL ERROR: build 
    34Please report this Hugs bug to http://hackage.haskell.org/trac/hugs 
    4  
    5 //code  
    6  
     5}}} 
     6code:  
     7{{{ 
    78pots :: Num a => a -> [a] 
    89pots x = scanl (*) 1 (repeat x) 
     
    1314fvsp :: Integer -> Int 
    1415fvsp n = length (takeWhile not (zipWith (<) (pots n) factoriales)) 
     16}}}