Question: ( c ) Let the following Haskell program be given main :: IO ( ) main = getLine > > = mainLoop where mainLoop previousInput

(c) Let the following Haskell program be given
main :: IO ()
main = getLine >>= mainLoop
where mainLoop previousInput = do
{
putStrLn (previousInput ++"!");
i <- getLine;
if i /= previousInput then
mainLoop i
else
return ()
}
(i) Explain informally how this code works. Under which condition will this
program terminate?
(ii) Give the output assuming that the user enters successively Hi
Program ??(where each
corresponds to hitting the return/enter key).
(iii) What is the type of the subexpression mainLoop?
[5 marks]
CS-205: Page 2 of 5

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!