1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-09-20 12:22:35 +02:00
rustlings/ex4.rs

15 lines
283 B
Rust
Raw Normal View History

2018-02-22 07:09:53 +01:00
// ex4.rs
2015-09-16 02:29:05 +02: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),
}
}