diff options
Diffstat (limited to 'info.toml')
| -rw-r--r-- | info.toml | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -521,6 +521,20 @@ Or use an `if let` statement on the result of `pop()` to both destructure a `Some` value and only print out something if we have a value!""" [[exercises]] +name = "option1" +path = "exercises/option/option1.rs" +mode = "compile" +hint = """ +Check out some functions of Option: +is_some +is_none +unwrap + +and: +pattern matching +""" + +[[exercises]] name = "result1" path = "exercises/error_handling/result1.rs" mode = "test" |
