If I recall correctly, earlier in the kotlin docs,...
# android
r
If I recall correctly, earlier in the kotlin docs, there was a way to represent large integers in following way
Copy code
val bigInt = 1e6 //something similar, I can't recall exact representation -__-
However, now I’m unable to find it in the docs. Is it obsolete now or didn’t existed in the first place?
👍 1
k
I think you mean 1_000_000 That's 1 million in a slightly easier to read format.