Rust安装

在安装Rust前必须安装c++ tools,下载地址:

Microsoft Visual C++ Build Tools 2015

进入下列网址进行安装

https://www.rust-lang.org/learn/get-started

点击RUSTUP.EXE大按钮,跟着步骤做便可

使用

详细可以看官网的Document:https://doc.rust-lang.org/cargo/getting-started/first-steps.html

或者下列网址

易百教程:  https://www.yiibai.com/rust/first-rust-program.html

官网例子: https://doc.rust-lang.org/stable/rust-by-example/

函数功能搜索:https://doc.rust-lang.org/stable/std/io/trait.Read.html

重点内容:https://skyao.gitbooks.io/learning-rust/grammar/basic.html

经典例子

$ cargo new hello_world

 两种方法运行

1.再运行下列代码

$ cargo build
   Compiling hello_world v0.1.0 (file:///path/to/package/hello_world)

 编译完成后进入target/debug中,运行hello_world。

 2.建立工程后,进入文件,运行代码

$ cargo run
     Fresh hello_world v0.1.0 (file:///path/to/package/hello_world)
   Running `target/hello_world`
Hello, world!

例子2

 直接编写rs文件,使用rustc编译运行。首先创建文件hello.rs,编写下列代码

fn main(){
	println!("Hello world!");
}

 接着使用命令rustc hello.rs编译文件,再运行hello.exe即可。

 

你可能感兴趣的:(Rust安装)