Attempted

Crates.io Documentation

Examples

```rust fn positive(x: i32) -> Option { if x > 0 { Some(x) } else { None } }

[attempt]

fn test() { // try something let x = positive(13)?;

// do something with x
println!("{} is positive", x);

} ```