26 Rust02 安装与hello worldOn this page02 安装与hello world1 安装打开官网安装页面链接,然后官网就是根据你当前的系统生成一个安装的命令行,然后在本机输入回车后 根据提示安装就行了。 安装成功时: 在本机终端输入$ rustc -- versionrustc 1.59.0 (9d1b2106e 2022-02-23) # <-- 会输出版本的相关信息2 hello world添加一个文件main.rsfn main() { println!("Hello world!");}$ rustc marn.rs && ./marnhello wordl!