本篇主要介绍rust安装与hello world程序的编写
curl https://sh.rustup.rs | sh
运行上面命令,选择1安装方式,会在$HOME/.cargo/bin下面安装rustc、cargo、rustup等工具命令。
hello.rs
fn main() {
println!("hello world!");
}
编译
rustc hello.rs
运行
./hello
解析说明
如果觉得我的文章对您有用,请随意打赏。你的支持将鼓励我继续创作!