Difference between revisions of "Humor/irish joke"

From HaskellWiki
Jump to navigation Jump to search
 
m (Reverted edits by Tomjaguarpaw (talk) to last revision by Android)
 
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
  +
==How to keep an imperative programmer busy for hours ==
Tell him the an example for swapping two variables in Haskell is:
 
  +
 
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>

Latest revision as of 15:19, 6 February 2021

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>