rustlings/exercises/16_lifetimes/lifetimes2.rs

21 lines
445 B
Rust
Raw Normal View History

2024-06-27 11:24:27 +00:00
// Don't change this function.
2022-07-15 12:01:32 +00:00
fn longest<'a>(x: &'a str, y: &'a str) -> &'a str {
if x.len() > y.len() {
x
} else {
y
}
}
fn main() {
2024-06-27 11:24:27 +00:00
// TODO: Fix the compiler error by moving one line.
2022-07-15 12:01:32 +00:00
let string1 = String::from("long string is long");
let result;
{
let string2 = String::from("xyz");
2024-06-27 11:24:27 +00:00
result = longest(&string1, &string2);
2022-07-15 12:01:32 +00:00
}
2024-06-27 11:24:27 +00:00
println!("The longest string is '{result}'");
2022-07-15 12:01:32 +00:00
}