rustc --version
rustup update
rustup doc
fn main() {
println!("Hello.");
}
$ rustc hello.rs
$ ./hello
Hello.
println!
- マクロcargo --version
cargo new hello_cargo --bin ; ls hello_cargo ; cat hello_cargo/Cargo.toml
$ 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
cargo build
cargo run
cargo build --release