mirror of
https://github.com/edwinb/Idris2-boot.git
synced 2024-11-23 20:22:34 +03:00
5 lines
120 B
Idris
5 lines
120 B
Idris
|
greet : IO ()
|
||
|
greet = do putStr "What is your name? "
|
||
|
name <- getLine
|
||
|
putStrLn ("Hello " ++ name)
|