diff options
| author | Adam Bard <github@adambard.com> | 2013-09-19 23:08:48 -0700 | 
|---|---|---|
| committer | Adam Bard <github@adambard.com> | 2013-09-19 23:08:48 -0700 | 
| commit | 432869b39794177c1b33c5eb318123b7b57227b3 (patch) | |
| tree | 21345ce56db8c22bacc1d51658ad58bc6849b7c0 /haskell.html.markdown | |
| parent | 17c69eeb16f193b319d2e73cff3ebce55ec744a8 (diff) | |
| parent | 9e14fd6d364e9e33fcc5ad38c47dafd27e4e37ee (diff) | |
Merge pull request #358 from graue/patch-1
Haskell: fix comment out of sync with code
Diffstat (limited to '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 e3ec3f38..6b3c6e17 100644 --- a/haskell.html.markdown +++ b/haskell.html.markdown @@ -329,7 +329,7 @@ main' = interact countLines  sayHello :: IO ()  sayHello = do      putStrLn "What is your name?" -   name <- getLine -- this gets a line and gives it the name "input" +   name <- getLine -- this gets a line and gives it the name "name"     putStrLn $ "Hello, " ++ name  -- Exercise: write your own version of `interact` that only reads | 
