In the book's tutorial this pub is not necessary, right?

⚓ rust    📅 2025-07-05    👤 surdeus    👁️ 2      

surdeus

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

Read full topic

🏷️ rust_feed