1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-05-24 17:16:12 +02:00
rustlings/exercises/ex4.rs
2018-11-09 20:31:14 +01:00

15 lines
283 B
Rust
Executable File

// ex4.rs
// 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),
}
}