E1012 Syntax Errors

Syntax

numeric literals cannot start with an underscore; did you mean '%s'?

When this occurs

Numbers like `_123`

Example error message

error[E1012]: numeric literal cannot start with underscore

How to fix

Numbers cannot start with underscore. Use `1_000` not `_1000`.

Related errors