Number Literals
Number literals represent numeric values in both integer and decimal formats. Scientific notation is not supported.
NumberLiteral = Digit { Digit } [ "." Digit { Digit } ] ;
Notes
- Integer and decimal numbers supported
- No scientific notation
- No leading zeros (except for
0 itself)