Info
This post is auto-generated from RSS feed The Rust Programming Language Forum - Latest topics. Source: In the book's tutorial this pub is not necessary, right?
use 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