Hi. This is my first post on this forum, but I have used Nim for some time now (in particular, the Gtk3 bindings).
Compiling one of my old programs with the new 0.18 version, I have encountered an error which can be sum up to a single statement: var x: int = 10_000_000_000 The error is _type mismatch: got <int64> but expected 'int'_ As my computer is a 64 bits machine and **int** is represented by 8 bytes, I expected 10_000_000_000 to be of type **int** not **int64** (as described in the user manual). Is there an explanation for this or is it a bug (which is also present is 0.17.2)?