diff options
author | Adam Bard <github@adambard.com> | 2013-06-30 14:52:21 -0700 |
---|---|---|
committer | Adam Bard <github@adambard.com> | 2013-06-30 14:52:21 -0700 |
commit | f7cd75c31bbca713cc66b3b46568472a2a1665fd (patch) | |
tree | f96a9d4846a7fc9bf381e3e6d75030b3abb83b73 | |
parent | bc0f1fca6c5f248257993e7bc80bf2d54652b7aa (diff) | |
parent | 7e4bd6d17e2003b0f5fd2fe6859c722a72c4acc3 (diff) |
Merge pull request #51 from noahlz/master
Fix issue #50
-rw-r--r-- | haskell.html.markdown | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/haskell.html.markdown b/haskell.html.markdown index 2437ceed..f3baa9a5 100644 --- a/haskell.html.markdown +++ b/haskell.html.markdown @@ -120,6 +120,10 @@ snd ("haskell", 1) -- 1 -- A simple function that takes two variables add a b = a + b +-- Note that if you are using ghci (the Haskell interpreter) +-- You'll need to use `let`, i.e. +-- let add a b = a + b + -- Using the function add 1 2 -- 3 |