Closed
Description
This code:
fn main() {
println!("{:?}", 0.);
}
produces 0
, but I would expect 0.
. This breaks the convention of Rust source code.
https://play.rust-lang.org/?gist=e1f1c703b2c582ddc3c3&version=nightly
This code:
fn main() {
println!("{:?}", 0.);
}
produces 0
, but I would expect 0.
. This breaks the convention of Rust source code.
https://play.rust-lang.org/?gist=e1f1c703b2c582ddc3c3&version=nightly