Last active
June 20, 2021 02:59
-
-
Save jessecogollo/21f2e07507fd5a1adc5af51cdb157ed7 to your computer and use it in GitHub Desktop.
guessing game - 2.11 - learnfuture
This file contains 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 | |
check :: String -> String -> Char -> (Bool, String) | |
check word display c | |
= (c `elem` word, [if x == c | |
then c | |
else y | (x,y) <- zip word display]) | |
turn :: String -> String -> Int -> IO () | |
turn word display n = | |
do | |
if n==0 | |
then putStrLn "You lose" | |
else if word == display | |
then putStrLn "You win !!!" | |
else mkguess word display n | |
mkguess :: String -> String -> Int -> IO () | |
mkguess word display n = | |
do | |
putStrLn (display ++ " " ++ take n (repeat '*')) | |
putStr " Enter your guess: " | |
q <- getLine | |
let (correct, display') = check word display (q!!0) | |
let n' = if correct then n else n-1 | |
turn word display' n' | |
starman :: Int -> IO () | |
starman n = | |
do | |
let randomInt range = randomRIO range :: IO Int | |
let list = ["monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday"] | |
let l = length list | |
num <- randomInt(0, l-1) | |
let word = (list !! num) | |
turn word ['-' | x <- word] n |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment