Skip to content

Rust で Hello World

~/develop/rust-helloディレクトリの中にプログラムを作成します。

VSCodeで~/develop/rust-helloディレクトリを開く

  • ディレクトリ作成 mkdir -p ~/develop/rust-hello

  • 移動 cd ~/develop/rust-hello

  • vscode を開く code .

Rust プロジェクトの初期化

~/develop/rust-helloディレクトリで以下のコマンドを実行します。

  • Rust プロジェクトの初期化 cargo init

実行すると、src/main.rsを含むいくつかのファイルが生成されます。src/main.rsには以下の内容が記述されています。

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

実行

cargo run

うまくできれば結果は次のようになります。

bash
kenken@kenken:~/develop/rust-hello$ cargo run
   Compiling rust_playground v0.1.0 (/home/kenken/main/temp/rust_playground)
    Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.31s
     Running `target/debug/rust_playground`
Hello, world!