mirror of
https://github.com/sunface/rust-by-practice.git
synced 2025-06-23 04:29:41 +00:00
Add solution
This commit is contained in:
@ -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>())
|
||||
}
|
||||
```
|
||||
|
||||
|
Reference in New Issue
Block a user