From bb85f3f367bafe3dd3c3145364a5f8f640c0c604 Mon Sep 17 00:00:00 2001 From: Abraham Neuwirth Date: Sun, 25 Dec 2016 12:25:25 -0500 Subject: [PATCH] clarified line 33 --- 02-starting-out.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02-starting-out.hs b/02-starting-out.hs index a3e3f5b..493b9a5 100644 --- a/02-starting-out.hs +++ b/02-starting-out.hs @@ -30,7 +30,7 @@ duplicate xs = undefined {- - Imitate the functinality of zip - - The function "min x y" returns the lower of values x and y + - hint The function "min x y" returns the lower of values x and y - For example "ziplike [1,2,3] ['a', 'b', 'c', 'd']" returns [(1,'a'), (2, 'b'), (3, 'c')] -} ziplike xs ys = undefined