mirror of
https://github.com/notohh/rustlings.git
synced 2024-11-23 06:02:23 -05:00
primitive_types5 solution
This commit is contained in:
parent
2a1bc53771
commit
532c9ebb30
3 changed files with 13 additions and 6 deletions
|
@ -1,8 +1,8 @@
|
||||||
// Destructure the `cat` tuple so that the println will work.
|
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let cat = ("Furry McFurson", 3.5);
|
let cat = ("Furry McFurson", 3.5);
|
||||||
let /* your pattern here */ = cat;
|
|
||||||
|
|
||||||
println!("{} is {} years old.", name, age);
|
// TODO: Destructure the `cat` tuple in one statement so that the println works.
|
||||||
|
// let /* your pattern here */ = cat;
|
||||||
|
|
||||||
|
println!("{name} is {age} years old");
|
||||||
}
|
}
|
||||||
|
|
|
@ -286,7 +286,7 @@ Particularly the part about destructuring (second to last example in the
|
||||||
section).
|
section).
|
||||||
|
|
||||||
You'll need to make a pattern to bind `name` and `age` to the appropriate parts
|
You'll need to make a pattern to bind `name` and `age` to the appropriate parts
|
||||||
of the tuple. You can do it!!"""
|
of the tuple."""
|
||||||
|
|
||||||
[[exercises]]
|
[[exercises]]
|
||||||
name = "primitive_types6"
|
name = "primitive_types6"
|
||||||
|
|
|
@ -1 +1,8 @@
|
||||||
// Solutions will be available before the stable release. Thank you for testing the beta version 🥰
|
fn main() {
|
||||||
|
let cat = ("Furry McFurson", 3.5);
|
||||||
|
|
||||||
|
// Destructuring the tuple.
|
||||||
|
let (name, age) = cat;
|
||||||
|
|
||||||
|
println!("{name} is {age} years old");
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue