how to extract Operator like "<=" #387
-
Below is my code
It output error "unexpected token "=" (expected )", can someone tell why ?
|
Beta Was this translation helpful? Give feedback.
Answered by
alecthomas
Jan 22, 2024
Replies: 1 comment
-
The default lexer has separate tokens for |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
xixiliguo
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The default lexer has separate tokens for
<
and=
so you'll need to match them separately, or write your own lexer.