Skip to content

Instantly share code, notes, and snippets.

@igrep
Created September 9, 2012 06:24
Show Gist options
  • Select an option

  • Save igrep/3682948 to your computer and use it in GitHub Desktop.

Select an option

Save igrep/3682948 to your computer and use it in GitHub Desktop.
import Control.Monad
import System.IO
main :: IO ()
main = do
putStr "あなたの名前は? "
hFlush stdout
eof <- isEOF
if eof
then
return ()
else do
name <- getLine
when ( name == "山本悠滋" ) $ do
putStrLn "いい名前だね!"
main
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment