rustc --versionrustup updaterustup docfn main() {
println!("Hello.");
}$ rustc hello.rs
$ ./hello
Hello.
println! - マクロcargo --versioncargo 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 buildcargo runcargo build --release