Difference between revisions of "Humor/irish joke"

From HaskellWiki
Jump to navigation Jump to search
(No difference)

Revision as of 09:02, 15 December 2006

Tell him the an example for swapping two variables in Haskell is:

 a = 4
 b = 3
 let a=b; b=a in print (b-a)