Skip to content

Commit

Permalink
Lex: add qualifier
Browse files Browse the repository at this point in the history
  • Loading branch information
zoep committed Oct 23, 2023
1 parent 002f56d commit 5c62839
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Lex.x
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ tokens :-
")" { mk RPAREN }
"[" { mk LBRACK }
"]" { mk RBRACK }
"=" { mk EQ }
">" { mk GT }
"<" { mk LT }
"=" { mk Lex.EQ }
">" { mk Lex.GT }
"<" { mk Lex.LT }
":" { mk COLON }
"+" { mk PLUS }
"-" { mk MINUS }
Expand Down

0 comments on commit 5c62839

Please sign in to comment.