Allow float suffix of 'f' or 'F'

This commit is contained in:
Emery Hemingway 2023-12-22 22:22:14 +02:00
parent c9efa13bcd
commit 97b4a2ee1f
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ grammar "Preserves":
exp <- 'e' * ?('-'|'+') * +Digit
flt <- int * ((frac * exp) | frac | exp)
Float <- >flt * 'f'
Float <- >flt * {'f','F'}
Double <- flt
SignedInteger <- int