X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?a=blobdiff_plain;f=exercises%2Fassignment7.mdwn;h=bfc171b6f0b5f512efb98c621a6937514ca4d8d3;hb=673f410ac773ac3667d5e8faf0f036196197d301;hp=e9cf82371162e91fb718094a669a096e5809a337;hpb=9d1d3d7d480c1c808a7a9fddf39f95037196d506;p=lambda.git diff --git a/exercises/assignment7.mdwn b/exercises/assignment7.mdwn index e9cf8237..bfc171b6 100644 --- a/exercises/assignment7.mdwn +++ b/exercises/assignment7.mdwn @@ -129,4 +129,7 @@ is the singleton function `\p. [p]`, and the composition operator is: let j a = [a; a+1];; let k b = [b*b; b+b];; - (j >=> k) 7 (* ==> [49; 14; 64; 16] *) + (j >=> k) 7 + (* which OCaml evaluates to: + - : int list = [49; 14; 64; 16] + *)