RustのパッケージマネージャーcargoでHello World

参考サイトは、「The Cargo Book – First Step with Cargo

Dockerで環境準備

rustのオフィシャルimageでいけた。

docker run -e USER=$USER -v "$PWD":/src  -it rust:1.32 bash

プロジェクト作成

これで、中にsrcフォルダと、Cargo.tomlが入ったフォルダができます。

cargo new hello_world

ソースをちょっとだけ編集

src/main.rs をこんな感じに編集

main.rs

fn main() {
    println!("Hello, Rust!");
}

実行

hello_worldフォルダで、runする

cd hello_world
cargo run

これで、「Hello, Rust!」がでればOK