Add comment

This commit is contained in:
Adrien Vannson 2022-05-16 23:25:49 +02:00
parent 7439ae817a
commit e706c4bb9d
No known key found for this signature in database
GPG Key ID: FE2E66FD978C1A55

View File

@ -10,8 +10,8 @@ rule token = parse
| ')' { RPAREN }
| "->" { RARROW }
| '~' { TILDE }
| "/\\" { LAND }
| "\\/" { LOR }
| "/\\" { LAND } (* logical and *)
| "\\/" { LOR } (* logical or *)
| ',' { COMMA }
| "intro" { INTRO }
@ -22,7 +22,7 @@ rule token = parse
| "split" { SPLIT }
| "left" { LEFT }
| "right" { RIGHT }
| "False" { FALSE }
| "fun" { FUN }