Mac上安装Rust开发环境
怎么简单怎么来吧,homebrew+VS Code
安装
brew install rust
700+兆的文件秒下,还是有点吓到我的
会自动下载Rust编译器(rustc)和Rust包管理器(cargo)
检查是否安装成功:
rustc --version
cargo --version
Hello World!
VS Code,先装 Rust插件和rust-analyzer插件 以提供代码提示等
创建 hello.rs 文件
// this is a comment fn main(){ println!("hello world!"); }
编译
rustc hello.rs
运行
./hello
个性签名:时间会解决一切