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