Rust 1012024年1月6日 · 阅读需 5 分钟Rust 入门 起步 创建文件 main.rs,内容如下: fn main() { println!("Hello, world!");} 编译代码: $ rustc main.rs$ lsmain main.rs 运行代码: $ ./main# Windows$ .\main.exe 工具 Cargo # 创建项目$ cargo new <project_name># 编译项目$ cargo build# 编译并运行项目$ cargo run# 检查项目$ cargo check rustfmt $ rustfmt main.rs