(no commit message)
authorbarker <barker@web>
Mon, 1 Nov 2010 19:29:16 +0000 (15:29 -0400)
committerLambda Wiki <lambda@SERVER.PHILOSOPHY.FAS.NYU.EDU>
Mon, 1 Nov 2010 19:29:16 +0000 (15:29 -0400)
assignment_6_hint_1.mdwn [new file with mode: 0644]

diff --git a/assignment_6_hint_1.mdwn b/assignment_6_hint_1.mdwn
new file mode 100644 (file)
index 0000000..b9d95d2
--- /dev/null
@@ -0,0 +1,8 @@
+Use the following type declarations:
+
+    type count = int;;
+    type computation = count -> (int * count);;
+
+(You can make the computation type polymorphic if you want to.)
+
+If you're still stumped, read Wadler--