-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstarman.hs
More file actions
31 lines (28 loc) · 753 Bytes
/
starman.hs
File metadata and controls
31 lines (28 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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 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 :: String -> Int -> IO ()
starman word n = turn word ['-' | x <- word] n