diff options
| author | William Hergès <william@herges.fr> | 2025-11-09 13:36:02 +0100 |
|---|---|---|
| committer | William Hergès <william@herges.fr> | 2025-11-09 13:36:02 +0100 |
| commit | 7ddc83f098cfd316656c28dcca5375b939fd6c00 (patch) | |
| tree | ca37624e84a771c8e49d8ae4623e298a9a2b9692 /src/elixir_math_parser_lexer.xrl | |
| parent | 3b0cc79dee76244da55d2326cc4244a384d85e44 (diff) | |
feat(calc)): partial supports of exp
Diffstat (limited to 'src/elixir_math_parser_lexer.xrl')
| -rw-r--r-- | src/elixir_math_parser_lexer.xrl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/elixir_math_parser_lexer.xrl b/src/elixir_math_parser_lexer.xrl index 5bdcbef..c29416e 100644 --- a/src/elixir_math_parser_lexer.xrl +++ b/src/elixir_math_parser_lexer.xrl @@ -14,6 +14,7 @@ Rules. \( : {token, {'(', TokenLine}}. \) : {token, {')', TokenLine}}. ! : {token, {'!', TokenLine}}. +\^ : {token, {'^', TokenLine}}. {BREAK}+ : {token, {break, TokenLine}}. {NAME} : {token, {var, TokenLine, TokenChars}}. {INT} : {token, {int, TokenLine, TokenChars}}. |
