trpl-zh-cn/listings/ch19-advanced-features/listing-19-09/src/main.rs
2022-02-06 16:43:51 +08:00

6 lines
101 B
Rust
Executable File

static HELLO_WORLD: &str = "Hello, world!";
fn main() {
println!("name is: {}", HELLO_WORLD);
}