Personal tools

Humor/irish joke

From HaskellWiki

< Humor(Difference between revisions)
Jump to: navigation, search
Current revision (19:33, 20 October 2012) (edit) (undo)
m (How to keep an imperative programmer busy for hours)
 
(2 intermediate revisions not shown.)
Line 1: Line 1:
-
give him the example for swapping two variables in Haskell of:
+
==How to keep an imperative programmer busy for hours ==
 +
 
 +
tell them the syntax for swapping two variables in Haskell is:
<haskell>
<haskell>
-
a = 4
+
let a=b; b=a in <exp>
-
b = 3
+
-
let a=b; b=a in print (b-a)
+
</haskell>
</haskell>

Current revision

How to keep an imperative programmer busy for hours

tell them the syntax for swapping two variables in Haskell is:

let a=b; b=a in <exp>