rustlings/ex4.rs

14 lines
273 B
Rust
Raw Normal View History

2015-09-15 19:29:05 -05:00
// 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),
}
}