Created
February 27, 2015 11:28
-
-
Save MiyamonY/8cce474e00e78f5f311e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import System.Random | |
import Control.Monad (when) | |
main :: IO () | |
main = do | |
gen <- getStdGen | |
askForNumber gen | |
askForNumber :: StdGen -> IO () | |
askForNumber gen = do | |
let (randomNumber, newGen) = randomR (1, 10) gen :: (Int, StdGen) | |
putStrLn "Which in the range from 1 to 10 am I thinking of?" | |
numberString <- getLine | |
when (not $ null numberString) $ do | |
let number = read numberString | |
if randomNumber == number | |
then putStrLn "You are correct!" | |
else putStrLn $ "Sorry, it was " ++ show randomNumber | |
askForNumber newGen |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment