[mercury-users] Unable to parse single character comma

Julien Fischer juliensf at csse.unimelb.edu.au
Tue Nov 15 15:44:33 AEDT 2011


Hi,

On Mon, 14 Nov 2011, Daniel Patterson wrote:

> When trying to use a literal character comma like:
>
> Char = ','

You need to escape the comma, otherwise the parse thinks it's the
conjunction operator, i.e. put the literal in parentheses

    Char = (',')

then it should be fine.

Julien.
--------------------------------------------------------------------------
mercury-users mailing list
Post messages to:       mercury-users at csse.unimelb.edu.au
Administrative Queries: owner-mercury-users at csse.unimelb.edu.au
Subscriptions:          mercury-users-request at csse.unimelb.edu.au
--------------------------------------------------------------------------



More information about the users mailing list