Re: [Haskell] Parsec operator issue

2010-02-16 Thread Greg Fitzgerald
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

Re: [Haskell] Re: ANNOUNCE: HNOP 0.1

2006-06-30 Thread Greg Fitzgerald
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