Files
haskell/exs.hs
2017-02-07 20:06:59 +00:00

8 lines
110 B
Haskell

ifa = do
putStr "Name: "
name <- getLine
if name == "Koen"
then putStrLn "I know you"
else return ()