E1014 Syntax Errors

Syntax

number cannot have an underscore before the decimal point

When this occurs

Numbers like `123_.45`

Example error message

error[E1014]: underscore cannot appear immediately before decimal point

How to fix

Remove underscore before the decimal point. Use `3.14` not `3_.14`.

Related errors