antlr4-calculator icon indicating copy to clipboard operation
antlr4-calculator copied to clipboard

ANTLR4 calculator example and explanation

Results 2 antlr4-calculator issues
Sort by recently updated
recently updated
newest added

It might be interesting to support floating-point numbers, rather than only integers (`1.23`). We could also allow `_` as a separator for more legible numbers (i.e. `1_000_000`). This requires adding...

Right now, the parser is quite tolerant -- a bit too tolerant, perhaps. For educational purposes, it might be a better idea to explicitly fail on a parse error and...