rustlings/ex4.rs
Carol (Nichols || Goulding) 662c651c6f Create ex4.rs
2015-09-15 20:29:05 -04:00

13 lines
273 B
Rust

// Make me compile!
fn something() -> Result<i32, std::num::ParseIntError> {
let x:i32 = "3".parse();
Ok(x * 4)
}
fn main() {
match something() {
Ok(..) => println!("You win!"),
Err(e) => println!("Oh no something went wrong: {}", e),
}
}