In the book's tutorial this pub is not necessary, right?
⚓ Rust 📅 2025-07-05 👤 surdeus 👁️ 17use crate::garden::vegetables::Asparagus;
pub mod garden;
fn main() {
let plant = Asparagus {};
println!("I'm growing {plant:?}!");
}
This pub is not necessary in the book's tutorials.
Instead, it makes sense to be in a library crate.
5 posts - 3 participants
🏷️ rust_feed