Re: Newbie question

2005-01-09 Thread Einar Karttunen
Dmitri Pissarenko [EMAIL PROTECTED] writes: a) asking the user to enter several numbers (while the end of the sequence is indicated by entering 0) b) calculate the sum of those numbers. ... Here is a corrected version: module Main where import IO Delete this. main = do

Re: Newbie question

2005-01-09 Thread Robert Dockins
comments inline... module Main where import IO main = do hSetBuffering stdin LineBuffering words - askForNumbers printWords words map read words putStrLn The sum is foldl (+) 0 words as you noted map read words is a problematic line. The

Re: Newbie question

2005-01-09 Thread Dmitri Pissarenko
Thanks all for the help! ___ Glasgow-haskell-users mailing list Glasgow-haskell-users@haskell.org http://www.haskell.org/mailman/listinfo/glasgow-haskell-users