playground/haskell/hello.hs

5 lines
109 B
Haskell

main = do
putStrLn "Enter your name: "
name <- getLine
putStrLn ("Hi " ++ name ++ "! Good day.")