rust_study/1.hello_world/main.rs
2022-06-26 15:01:16 +08:00

8 lines
93 B
Rust

// 编译
// rustc ./main.rs
// 主函数入口
fn main() {
println!("Hello World");
}