<p dir="ltr">main must have type IO a. Hoogle tells me that to convert [IO a] -> IO [a], you should use the function sequence. Try applying that to your final line.</p>
<br><div class="gmail_quote">On Mon, 9 Mar 2015 16:07 Geoffrey Bays <<a href="mailto:charioteer7@gmail.com">charioteer7@gmail.com</a>> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div><div><div><div>My main function looks like this:<br><br>main :: [IO()]<br>main = do<br>    let stud1 = Student {name = "Geoff", average = -99.0, grades = [66,77,88]}<br>    let stud2 = Student {name = "Doug", average = -99.0, grades = [77,88,99]}<br>    let stud3 = Student {name = "Ron", average = -99.0, grades = [55,66,77]}<br>    let studList = [stud1,stud2]<br>    let newList = calcAvg studList<br>    [putStrLn $ show s | s <- newList]<br>    --putStrLn $ show (newList !! 0)<br>    --putStrLn $ show (newList !! 1)<br><br></div>With this final line, putStrLn $ show (newList !! 0), the type IO () in the function declaration compiles fine.<br></div>But with [putStrLn $ show s | s <- newList] as the final line, [IO ()] in the function declaration will not compile, I get this error:<br><br>    Couldn't match expected type `IO t0' with actual type `[IO ()]'<br><br></div>What does the declared type need to be for a final line of:<br> [putStrLn $ show s | s <- newList]  ???<br><br></div>Thanks,<br><br></div>Geoffrey<br><div><div><br></div></div></div>
______________________________<u></u>_________________<br>
Beginners mailing list<br>
<a href="mailto:Beginners@haskell.org" target="_blank">Beginners@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners" target="_blank">http://mail.haskell.org/cgi-<u></u>bin/mailman/listinfo/beginners</a><br>
</blockquote></div>