Rust-安装及Hello World

操作环境-Linux CentOS

学习文档-https://kaisery.github.io/trpl-zh-cn/

1.Rust安装

   Linux 安装命令 : curl https://sh.rustup.rs -sSf | sh

    此命令是下载一个脚本,并安装rustup 工具,这会安装最新版的rust

安装成功提示:Rust is installed now. Great!


Rust-安装及Hello World_第1张图片
安装成功

此安装脚本会将Rust加入系统Path环境变量中,在下次登录系统的时候生效,如果你希望立即使用Rust,可以手动将Rust加入到环境变量中。

命令:source $HOME/.cargo/env

或者,可以在 ~/.bash_profile 文件中增加如下行:

$ export PATH="$HOME/.cargo/bin:$PATH"

安装成功,可以通过

rustc --version 查看版本信息

2.Hello world

创建工程目录,在此目录下创建一个Rust源文件,编译执行

代码及源文件:

hello_world.rs

    fn main() {

        println!(" Rs: Hello, world!");

    }

编译: rustc hello_world.rs

编译成功会出现 hello_world 可执行文件


编译成功

./hello_world 执行


执行结果

你可能感兴趣的:(Rust-安装及Hello World)