2017-06-17   rust 

Rust Memo

Install

Document

Example

fn main() {
    println!("Hello.");
}
$ rustc hello.rs
$ ./hello
Hello.

Cargo

$ cd hello_cargo
$ tree -a .
.
├── .git
│   ├── HEAD
│   ├── config
│   ├── description
│   ├── hooks
│   │   └── README.sample
│   ├── info
│   │   └── exclude
│   ├── objects
│   │   ├── info
│   │   └── pack
│   └── refs
│       ├── heads
│       └── tags
├── .gitignore
├── Cargo.toml
└── src
    └── main.rs
 2017-06-17   rust