"Dan Piponi" <[EMAIL PROTECTED]> writes:

> Even though 'n' is 10 times bigger in the C program it runs much
> faster than the Haskell program on my MacBook Pro with Haskell 6.6.1.
> I've tried lots of different combinations of flags that I've found in
> various postings to haskell-cafe but to no avail.

import Data.List

main = do
  print $ foldl' (+) 0 $ take 100000000 [1.0,1.0..]

works 10 times faster than your C version. You just need to adapt to the
radically different style of programming.

Real Fortran programmer may write Fortran programs on any programming
language :)

-- 
JID: [EMAIL PROTECTED]
_______________________________________________
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe

Reply via email to