You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Double-precision floating-point is also supported, and the integer 7 would be written 7., 7.0, 7e0, or any equivalent representation using a decimal point or exponent.
It looks like these are at odds: 7. doesn't match the definition of FLOAT_LIT.
The text was updated successfully, but these errors were encountered:
The lexis defines
FLOAT_LIT ::= -? DIGIT* . DIGIT+ EXPONENT? | -? DIGIT+ EXPONENT
The text under numeric values states:
It looks like these are at odds:
7.
doesn't match the definition of FLOAT_LIT.The text was updated successfully, but these errors were encountered: