Hi Adam,
> parse "x=-1", it fails. Does anyone know how to fix this?
This issue is in using the 'reservedOp' combinator which rejects '='
when followed by '-'.
reservedOp name =
lexeme $ try $
do{ string name
; notFollowedBy (opLetter languageDef) ("end of " ++ show n
I once worked for a company at which HNOP could be used as a drop-in replacement for half the programmers.-GregOn 6/30/06, Christophe Poucet
<[EMAIL PROTECTED]> wrote:
I do think that refactoring this to a library would be a much better idea. That way we can see how this scales to multithreaded a