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

⚓ Rust    📅 2025-07-05    👤 surdeus    👁️ 17      

surdeus

Warning

This post was published 123 days ago. The information described in this article may have changed.
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