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

8 lines
109 B
Rust
Raw Normal View History

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