Skip to content

Commit

Permalink
Hints for structs1 and structs2 (#355)
Browse files Browse the repository at this point in the history
  • Loading branch information
saidaspen authored Apr 16, 2020
1 parent 6c3cc2c commit a3a554a
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions info.toml
Original file line number Diff line number Diff line change
Expand Up @@ -215,13 +215,22 @@ Now you have another tool in your toolbox!"""
name = "structs1"
path = "exercises/structs/structs1.rs"
mode = "test"
hint = "No hints this time ;)"
hint = """
Rust has more than one type of struct. Both variants are used to package related data together.
On the one hand, there are normal, or classic, structs. These are named collections of related data stored in fields.
The other variant is tuple structs. Basically just named tuples.
In this exercise you need to implement one of each kind.
Read more about structs in The Book: https://doc.rust-lang.org/stable/book/ch05-00-structs.html"""

[[exercises]]
name = "structs2"
path = "exercises/structs/structs2.rs"
mode = "test"
hint = "No hints this time ;)"
hint = """
Creating instances of structs is easy, all you need to do is assign some values to its fields.
There is however some shortcuts that can be taken when instantiating structs.
Have a look in The Book, to find out more: https://doc.rust-lang.org/stable/book/ch05-01-defining-structs.html#creating-instances-from-other-instances-with-struct-update-syntax"""

# STRINGS

Expand Down

0 comments on commit a3a554a

Please sign in to comment.