From: barker Date: Sun, 24 Oct 2010 21:22:34 +0000 (-0400) Subject: (no commit message) X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=commitdiff_plain;h=f69789695afff2ee442e7ff5edaf84ff2f95b074 --- diff --git a/hint_assignment_5_problem_3_hint.mdwn b/hint_assignment_5_problem_3_hint.mdwn new file mode 100644 index 00000000..a9142605 --- /dev/null +++ b/hint_assignment_5_problem_3_hint.mdwn @@ -0,0 +1,7 @@ +What does + + let x = (fun () -> 2) in + let y = (fun () -> 3) in + match true with true -> x | false -> y;; + +evaluate to?