We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0.
pub fn main() { 0. .to_string(); }
formats currently to:
pub fn main() { 0..to_string(); }
Ideally this should be reformatted to be:
pub fn main() { (0.).to_string(); }
so as to avoid confusion.