Coding in Julia shows that using underscore as integer digit separator works in Julia.
x = 1_000_000
and
x = 1000000
are basically the same thing.
However, I am not able to locate the documentation for this, to read more details. Could anyone point me to that.
Also is digit separation character a common thing in different languages? What are the separator character in C++, java, and Python?