Changes between Initial Version and Version 2 of Ticket #54
- Timestamp:
- 07/24/07 05:44:38 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #54
- Property component changed from build system to hugs
-
Ticket #54 – description
initial v2 1 {{{ 1 2 Main> fvsp 450 2 3 INTERNAL ERROR: build 3 4 Please report this Hugs bug to http://hackage.haskell.org/trac/hugs 4 5 //code6 5 }}} 6 code: 7 {{{ 7 8 pots :: Num a => a -> [a] 8 9 pots x = scanl (*) 1 (repeat x) … … 13 14 fvsp :: Integer -> Int 14 15 fvsp n = length (takeWhile not (zipWith (<) (pots n) factoriales)) 16 }}}
