rustlings/exercises/lifetimes/lifetimes3.rs
2022-11-22 23:42:33 +08:00

22 lines
476 B
Rust

// lifetimes3.rs
//
// Lifetimes are also needed when structs hold references.
//
// Execute `rustlings hint lifetimes3` or use the `hint` watch subcommand for a hint.
struct Book<'a> {
author: &'a str,
title: &'a str,
}
fn main() {
let name = String::from("Jill Smith");
let title = String::from("Fish Flying");
let book = Book {
author: name.as_str(),
title: title.as_str(),
};
println!("{} by {}", book.title, book.author);
}