mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-05 13:08:05 +08:00
6 lines
101 B
Rust
Executable File
6 lines
101 B
Rust
Executable File
static HELLO_WORLD: &str = "Hello, world!";
|
|
|
|
fn main() {
|
|
println!("name is: {}", HELLO_WORLD);
|
|
}
|