开始一个新项目

Rust:
开始一个新项目

How to 开始:

创建Rust项目很简单。打开终端,使用cargo这个强大的工具。

// 在终端里创建一个名为“hello_world”的新Rust项目
cargo new hello_world

// 进入项目文件夹
cd hello_world

// 编译并运行项目
cargo run

输出应该是:

   Compiling hello_world v0.1.0 (/path/to/hello_world)
    Finished dev [unoptimized + debuginfo] target(s) in 0.65s
     Running `target/debug/hello_world`
Hello, world!

Deep Dive 深入了解:

Rust于2010年首次亮相,cargo自带于2015年发布的Rust 1.0中。cargo不仅可以创建项目,还能管理依赖和构建过程。C和C++使用make,Java使用Maven,Python用pip,但Rust全力支持cargo。它避免了编写复杂的构建脚本,简化了编译和包管理过程。启动新项目时,Cargo会自动为你生成一个合理的项目文件夹结构和一些基本的配置文件(如Cargo.toml),这让你可以立即开始编码,而不是陷入配置的泥潭。

See Also 参考链接: