December 2008
Memoizing recursive functions via the fixed-point Y combinator: Applying functional programming techniques to Javascript
Is it possible to express a "recursive" function like factorial without using recursion or iteration? The answer--often surprising--is yes. The technique involved--expressing recursive functions as fixed-points--leads to a more fundamental understanding of recursion.
Wow, there's a lovely world that needs to be explored
June 2008
Real World Haskell » Blog Archive » CUFP 2007 videos now easier to view
[…] the recorded sessions from last year’s Commercial Users of Functional Programming are now up in conveniently viewable form on Google Video.
Erlang, F#, ...
November 2007
Ruminations of a Programmer: Erlang String Lambdas
Over the last weekend I wanted to have a go at porting Oliver Steele's string lambda into Erlang. And here is the result ..
functional programming beauty
Ulisses Costa Blog » Blog Archive » foldr The magic function…
In Haskell we essentially use recursion, this mean defining a function using itself definition.
more magic!