I suggest you install hoogle or use the web interface as it can easily answer such questions for you:
What other imports must I add to get this to run. I can't seem to get it right.Michael=========
import Text.ParserCombinators.Parsec.Primmain = case (parse numbers "" "11, 2, 43") ofLeft err -> print errRight xs -> print (sum xs)numbers = commaSep integer==============[michael@sabal ~]$ ghc --make parsetest.hs[1 of 1] Compiling Main ( parsetest.hs, parsetest.o )parsetest.hs:7:11: Not in scope: `commaSep'parsetest.hs:7:20: Not in scope: `integer'[michael@sabal ~]$
_______________________________________________
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe