2026-01-23 10:22:39 -08:00

41 lines
1.0 KiB
Rust

fn main() {
// You can optionally experiment here.
}
#[cfg(test)]
mod tests {
#[test]
fn simple_option() {
let target = "rustlings";
let optional_target = Some(target);
// TODO: Complete this if-let statement by adding the missing keywords.
// The pattern should match oon 'Some'.
word = optional_target {
assert_eq!(word, target);
}
}
#[test]
fn layered_option() {
let range = 10;
let mut optional_integers: Vec<Option<i8>> = vec![None];
for i in 1..=range {
optional_integers.push(Some(i));
}
let mut cursor = range;
// TODO: Complete this while-let statement by adding the missing keywords.
// Remember that `Vec::pop()` adds another layer of `Option`.
// You can do nested pattern matching in if-let and while-let statements.
integer = optional_integers.pop() {
assert_eq!(integer, cursor);
cursor -= 1;
}
assert_eq!(cursor, 0);
}
}