mirror of
https://github.com/rust-lang/rustlings
synced 2024-11-08 19:10:25 +00: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),
|
||
|
}
|
||
|
}
|