You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now typing 1e6 will perform 1 * e * 6. I think it would be useful to first check whether the number should be evaluated using exponential notation.
> 1e6
1,000,000
> 1e12
1,000,000,000,000
Etc... Rust itself, Python and JavaScript support this and once you start using it, it's really hard to go without.
The text was updated successfully, but these errors were encountered:
Right now typing
1e6
will perform1 * e * 6
. I think it would be useful to first check whether the number should be evaluated using exponential notation.Etc... Rust itself, Python and JavaScript support this and once you start using it, it's really hard to go without.
The text was updated successfully, but these errors were encountered: