summaryrefslogtreecommitdiff
path: root/helloworld.hs
blob: 485eb34164dca31e474db314b1d847ae7be4a4f2 (plain)
1
2
3
4
5
main = do
    putStrLn "Hello, world !"
    putStrLn "Your name?"
    name <- getLine
    putStrLn ("Hey, "++ name ++", you rock!")