-
Notifications
You must be signed in to change notification settings - Fork 172
Open
Labels
Milestone
Description
This might be a huge oversight on my part. I noticed there are terminals for String, Integer, Double, etc. I was wondering if there was one for Bool. My current LBNF has rules in this form (see below), but since Bool wasn't present I had to define my own. Would it be hard to add Bool ?
StringValue . Value ::= String;
IntValue . Value ::= Integer;
BoolValue . Value ::= GBool;
FloatValue . Value ::= Double;