【RUST】基本命令行操作

Cargo


# 创建项目
cargo new hello_cargo

# 编译运行
cargo run

# 检查代码,提高效率
cargo check

# 发布构建
cargo build --release

你可能感兴趣的:(rust,开发语言,后端)