Skip to content

Commit

Permalink
Document hexadecimal support
Browse files Browse the repository at this point in the history
  • Loading branch information
Blake-Madden authored Mar 14, 2024
1 parent 74804b8 commit 59522c4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,9 +256,10 @@ TinyExpr parses the following grammar:
In addition, whitespace between tokens is ignored.

Valid variable names consist of a letter followed by any combination of:
letters, the digits *0* through *9*, and underscore. Constants can be integers,
decimal numbers, or in scientific notation (e.g. *1e3* for *1000*). A leading
zero is not required (e.g. *.5* for *0.5*)
letters, the digits *0* through *9*, and underscore. Constants can be integers
or floating-point numbers, and can be in decimal, hexadecimal (e.g., *0x57CEF7*),
or scientific notation (e.g., *1e3* for *1000*).
A leading zero is not required (e.g., *.5* for *0.5*).


## Functions supported
Expand Down

0 comments on commit 59522c4

Please sign in to comment.