Skip to content

Latest commit

 

History

History
6 lines (6 loc) · 133 Bytes

File metadata and controls

6 lines (6 loc) · 133 Bytes
main = do  
    putStrLn "Hello, what's your name?"  
    name <- getLine  
    putStrLn ("Hey " ++ name ++ ", you rock!")