Rust初体验
下载
https://forge.rust-lang.org/infra/archive-stable-version-installers.html
Windows: x86_64-pc-windows-gnu
windows配置path
RUST_HOME=D:\your_dir\rust-1.80.1
PATH添加:
%RUST_HOME%\rustc\bin
%RUST_HOME%\cargo\bin
Linux系统下按Linux设置对应的path
验证
rust编译器 rustc:
rustc --version
cargo --version
Hello world
创建一个文本文件 hello.rs
,代码如下:
fn main() {
println!("Hello World!");
}
编译:
rustc hello.rs
同目录下生成两个文件:hello.exe, hello.pdb
再运行hello.exe,即可看到打印
Hello World!
表示首个rust编写并运行成功。
IDE
- RustRover或安装Vscode插件
建议RustRover