Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Recursion

Name: Anonymous 2011-03-26 22:06

Explain the essence of recursion in one line

Name: Anonymous 2011-03-26 22:13

>>1-2
Probably the same person, but I enjoyed it nonetheless.

Name: Anonymous 2011-03-26 22:16

Prelude> let fact n = if n == 1 then 1 else n * fact (n - 1)
Prelude> fact 5
120
Prelude>

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List