一门专注安全的编程语言
我用的是百度云服务器,系统为Ubunru 18.04.
吐槽一下百度的云服务器,竟然没有快照
$ curl https://sh.rustup.rs -sSf | sh
……
Rust is installed now. Great! # 安装成功
$ source $HOME/.cargo/env # 设置环境变量
$ cd ~/.cargo
$ vim config
[source.crates-io]
replace-with = 'ustc'
[source.ustc]
registry = "git://mirrors.ustc.edu.cn/crates.io-index"
R语言的文件扩展名为.rs,可通过cargo创建项目
$ cargo new hello # 创建一个名为hello的项目
$ cargo build # 编译项目
$ cargo run # 运行项目
创建项目后会自动生产一个main.rs源代码
use std::io;
fn main() {
println!("Hello, Please input guess!");
let mut guess = String::new();
io::stdin().read_line(&mut guess)
.expect("Failed to read line");
println!("You guess:{}",guess);
}
------------上面是代码,下面是输出结果--------------
Hello, Please input guess!
5
You guess:5