diff options
author | Adam Bard <github@adambard.com> | 2013-07-03 17:23:55 -0700 |
---|---|---|
committer | Adam Bard <github@adambard.com> | 2013-07-03 17:23:55 -0700 |
commit | 69e191458a6377e2b3e7bdb2126a046cc4ec7967 (patch) | |
tree | a4381175d2483d6c6585e2f3744f4d41610ca281 | |
parent | 7ec9e44ef098b287cda6c4030ae44de38fe4cdd6 (diff) | |
parent | 6be90f117b87e20f742cec382728142377847ba5 (diff) |
Merge pull request #100 from ilyagr/before
Update haskell.html.markdown
-rw-r--r-- | haskell.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haskell.html.markdown b/haskell.html.markdown index 840569fb..e8d7c077 100644 --- a/haskell.html.markdown +++ b/haskell.html.markdown @@ -269,7 +269,7 @@ foldl (\x y -> 2*x + y) 4 [1,2,3] -- 43 foldr (\x y -> 2*x + y) 4 [1,2,3] -- 16 -- This is now the same as -(2 * 3 + (2 * 2 + (2 * 1 + 4) +(2 * 3 + (2 * 2 + (2 * 1 + 4))) ---------------------------------------------------- -- 7. Data Types |