···88 unqualified import even if it was already imported.
99 ([Surya Rose](https://github.com/GearsDatapacks))
10101111+- Fixed a bug where numbers starting with `0x_`, `0o_` and `0b_` would cause
1212+ a syntax error when compiling to JavaScript.
1313+ ([Surya Rose](https://github.com/GearsDatapacks))
1414+1115## v1.10.0-rc1 - 2025-04-05
12161317### Compiler
···14611461 value
14621462 };
1463146314641464+ // If the number starts with `0x_`, `0b_` or `0o_`, that is valid Gleam syntax
14651465+ // but not valid JavaScript syntax, so we remove the `_` here.
14661466+ let value = value.trim_start_matches('_');
14671467+14641468 let value = value.trim_start_matches('0');
14651469 if value.is_empty() {
14661470 out.push('0');