Skip to content

Instantly share code, notes, and snippets.

@cohalz
Created May 15, 2014 13:57
Show Gist options
  • Save cohalz/83d9ee81f36cc4b7e187 to your computer and use it in GitHub Desktop.
Save cohalz/83d9ee81f36cc4b7e187 to your computer and use it in GitHub Desktop.
main = do
putStrLn $ a ++ " " ++ b where
a = "hello"
b = "world"
{-
以下どちらも嫌
main = do
putStrLn $ a ++ " " ++ b
where a = "hello"
b = "world"
main = do
putStrLn $ a ++ " " ++ b
where
a = "hello"
b = "world"
-}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment