-
Notifications
You must be signed in to change notification settings - Fork 10.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added option2 * changed up the exercise, modified the help section * Update exercises/option/option2.rs Co-Authored-By: fmoko <[email protected]> * Update exercises/option/option2.rs Co-Authored-By: fmoko <[email protected]> * Update exercises/option/option2.rs Co-Authored-By: fmoko <[email protected]> Co-authored-by: fmoko <[email protected]>
- Loading branch information
1 parent
71d3125
commit 86b5c08
Showing
2 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// option2.rs | ||
// Make me compile! Execute `rustlings hint option2` for hints | ||
|
||
// I AM NOT DONE | ||
|
||
fn main() { | ||
let optional_value = Some(String::from("rustlings")); | ||
// Make this an if let statement whose value is "Some" type | ||
value = optional_value { | ||
println!("the value of optional value is: {}", value); | ||
} else { | ||
println!("The optional value doesn't contain anything!"); | ||
} | ||
|
||
let mut optional_values_vec: Vec<Option<i8>> = Vec::new(); | ||
for x in 1..10 { | ||
optional_values_vec.push(Some(x)); | ||
} | ||
|
||
// make this a while let statement - remember that vector.pop also adds another layer of Option<T> | ||
// You can stack `Option<T>`'s into while let and if let | ||
value = optional_values_vec.pop() { | ||
println!("current value: {}", value); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters