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