Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,11 @@
|
|||
FLOAT
|
||||
: '.' DIGITS (Exponent)?
|
||||
| DIGITS '.' Exponent
|
||||
| DIGITS ('.' (DIGITS (Exponent)?)? | Exponent)
|
||||
;
|
||||
|
||||
DIGITS : ( '0' .. '9' )+ ;
|
||||
|
||||
Exponent
|
||||
: ('e' | 'E') ( '+' | '-' )? DIGITS
|
||||
;
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
2.3 # 2.2999999999999998
|
||||
.3 # 0.29999999999999999
|
||||
.3e4 # 3000.0
|
||||
.3e+34 # 2.9999999999999998e+33
|
||||
.3e-34 # 2.9999999999999999e-35
|
||||
2.e34 # 1.9999999999999999e+34
|
||||
Loading…
Add table
Add a link
Reference in a new issue