This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
This implements a fairly simple expression language via a Pratt-style parser. | |
The language supports fairly standard floating point literals, such as: | |
5 | |
1.09 | |
.16 | |
12e7 |
OlderNewer