Comment: Synthetic code (Score 1) on 2010.08.27 6:20
It's nice to see that Perl6 will be on par with Haskell for these kinds of examples. This Haskell example is from Rosseta code page (but rewritten for similarity).
Read More
9 comments
pascal = iterate (\row -> zipWith (+) ([0]++row) (row++[0])) [1]
The essential complexity of this example is the same. Only it contains more words than operators.
