diff options
| author | Anhgelus Morhtuuzh <william@herges.fr> | 2025-11-10 00:21:40 +0100 |
|---|---|---|
| committer | Anhgelus Morhtuuzh <william@herges.fr> | 2025-11-10 00:21:40 +0100 |
| commit | 244e46ed692e9d2a7c4be7c0f5adda03239ee2fd (patch) | |
| tree | 58e4d516a9bfe6d173380c4f557afb2e22816cd1 /src/elixir_math_parser_lexer.xrl | |
| parent | 2019a495893f138f70e189483f36b219eabe20e2 (diff) | |
feat(parser): supports _ in numbers
Diffstat (limited to 'src/elixir_math_parser_lexer.xrl')
| -rw-r--r-- | src/elixir_math_parser_lexer.xrl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/elixir_math_parser_lexer.xrl b/src/elixir_math_parser_lexer.xrl index c29416e..c418c02 100644 --- a/src/elixir_math_parser_lexer.xrl +++ b/src/elixir_math_parser_lexer.xrl @@ -1,5 +1,5 @@ Definitions. -INT = [0-9]+ +INT = [0-9_]+ NAME = [a-zA-Z_][a-zA-Z0-9_]* WHITESPACE = [\s\t\r] COMMENT = #[^\n]*\n? |
