mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-04-30 10:18:01 +08:00
9 lines
146 B
Rust
Executable File
9 lines
146 B
Rust
Executable File
use crate::garden::vegetables::Asparagus;
|
|
|
|
pub mod garden;
|
|
|
|
fn main() {
|
|
let plant = Asparagus {};
|
|
println!("I'm growing {:?}!", plant);
|
|
}
|