trpl-zh-cn/listings/ch15-smart-pointers/listing-15-11/src/main.rs

8 lines
107 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
// ANCHOR: here
fn hello(name: &str) {
2023-01-16 17:34:52 +08:00
println!("Hello, {name}!");
2022-02-06 16:43:51 +08:00
}
// ANCHOR_END: here
fn main() {}