Skip to content

Instantly share code, notes, and snippets.

@efwe
Created January 7, 2016 17:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save efwe/de3a3d18b755afb68ec0 to your computer and use it in GitHub Desktop.
Save efwe/de3a3d18b755afb68ec0 to your computer and use it in GitHub Desktop.
fn main() {
let x: f32 = 51.0237269662;
println!("The value of x is: {}", x);
// The value of x is: 51.023727
let y: f64 = 51.0237269662;
println!("The value of y is: {}", y);
// The value of y is: 51.0237269662
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment