"I have a mind like a steel... uh... thingy." Patrick Logan's weblog.

Search This Blog

Tuesday, May 11, 2004

The Professional Haskell Programmer?

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:

Blog Archive

About Me

Portland, Oregon, United States
I'm usually writing from my favorite location on the planet, the pacific northwest of the u.s. I write for myself only and unless otherwise specified my posts here should not be taken as representing an official position of my employer. Contact me at my gee mail account, username patrickdlogan.