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