User:WillNess

From HaskellWiki
Revision as of 14:36, 23 June 2011 by WillNess (talk | contribs)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

I am a newbie, interested in Haskell.

I like this:

primes = 2 : 3 : ([5,7..] `minus`
                     foldi (\x:xs -> (x:) . union xs)
                           [[p*p,p*p+2*p..] | p <- tail primes])

foldi is on Tree-like folds. More at Prime numbers.