while learning the parsec tutorial , I tried the fllowing command
print (Parsec.parse (Parsec.many (Parsec.choice [Parsec.letter,Parsec.spaces ,(Parsec.char ','), Parsec.digit])) "" "hello1 , byebye2 ," )
I am not sure how to fix this. How this can be fixed, any ideas??