Learn Rust by My way
This is the first paragraph of the document.
First Header | Second Header | Third Header |
---|---|---|
Left | Center | Right |
Left | Center | Right |
use crate::garden::vegetables::Asparagus;
pub mod garden;
fn main() {
let plant = Asparagus {};
println!("I'm growing {:?}!", plant);
}