Sign in
rust
/
book
/
refs/heads/fix-inline-code-dprint
/
.
/
listings
/
ch07-managing-growing-projects
/
quick-reference-example
/
src
/
main.rs
blob: 0d9a0ca92f1ed0d8381fe372337cd77966a513ae [
file
] [
log
] [
blame
] [
edit
]
use
crate
::
garden
::
vegetables
::
Asparagus
;
pub
mod
garden
;
fn
main
()
{
let
plant
=
Asparagus
{};
println
!(
"I'm growing {plant:?}!"
);
}