Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
fblanqui committed Nov 17, 2024
1 parent cb7bc1d commit 8375301
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parsing/lexer.mll
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
}

let space = [' ' '\t' '\r']
let letter = ['a'-'z' 'A'-'Z' '0'-'9' '_' '!' '?' '\'' '+' '*' '~' '&' '^' '@' '=' '$' '%' '/' '<' '|' '-' '\\']
let letter = ['a'-'z' 'A'-'Z' '0'-'9' '_' '!' '?' '\'' '+' '*' '~' '&' '^' '@' '=' '$' '%' '/' '<' '|' '-' '\\' '>']
let mident = ['a'-'z' 'A'-'Z' '0'-'9' '_']+
let ident = letter+

Expand Down

0 comments on commit 8375301

Please sign in to comment.