mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-02 11:18:14 +08:00
8 lines
107 B
Rust
8 lines
107 B
Rust
// ANCHOR: here
|
|
fn hello(name: &str) {
|
|
println!("Hello, {name}!");
|
|
}
|
|
// ANCHOR_END: here
|
|
|
|
fn main() {}
|