attempted 0.1.0

Wrap a function with 'unwrap or return'
Documentation

Attempted

Crates.io Documentation

Examples

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

#[attempt]
fn test() {
    // try something
    let x = positive(13)?;
    
    // do something with x
    println!("{} is positive", x);
}