Add solution

This commit is contained in:
Jackson Utsch 2022-10-07 13:07:34 -07:00 committed by GitHub
parent 2057e0b0f0
commit bf9f321870
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 2 deletions

View File

@ -64,10 +64,17 @@ fn main() {
7.
```rust
fn main() {
fn main() {
let x = 1_000.000_1; // f64
let y: f32 = 0.12; // f32
let z = 0.01_f64; // f64
assert_eq!(type_of(&x), "f64".to_string());
println!("Success!");
}
fn type_of<T>(_: &T) -> String {
format!("{}", std::any::type_name::<T>())
}
```
@ -140,4 +147,4 @@ fn main() {
println!("1 << 5 is {}", 1u32 << 5);
println!("0x80 >> 2 is 0x{:x}", 0x80u32 >> 2);
}
```
```