This illustration of Haskell programming styles left out one example, the professional Haskell programmer. 8^)
int fac(int n) {
if (n == 0)
return 1;
else
return n * fac(n - 1);
}
(Found via Sean McGrath)
"I have a mind like a steel... uh... thingy." Patrick Logan's weblog.
This illustration of Haskell programming styles left out one example, the professional Haskell programmer. 8^)
int fac(int n) {
if (n == 0)
return 1;
else
return n * fac(n - 1);
}
(Found via Sean McGrath)
No comments:
Post a Comment