disallow > in identifiers (temp fix)

This commit is contained in:
mehbark 2025-07-02 22:19:21 -04:00
parent b4a0c0af3a
commit 6ee6ebfb64

View file

@ -23,7 +23,7 @@ enum Token<'a> {
#[token(")")] #[token(")")]
CloseParen, CloseParen,
#[regex(r"[a-zA-Z0-9+*/%.:=<>$_-]+")] #[regex(r"[a-zA-Z0-9+*/%.:=<$_-]+")]
VarOrNum(&'a str), VarOrNum(&'a str),
#[token("!")] #[token("!")]