mirror of
https://github.com/ArthurDanjou/rustlings.git
synced 2026-01-14 12:14:37 +01:00
14 lines
273 B
Rust
14 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),
|
|
}
|
|
}
|