Rustプログラミング言語 HelloWorldのサンプル

環境
OSバージョンを確認します
# cat /etc/redhat-release
Rocky Linux release 9.0 (Blue Onyx)

Rustバージョンを確認します

# rustc -V
rustc 1.64.0 (a55dd71d5 2022-09-19)

操作方法
1.Rustプロジェクトディレクトリを作成します
# mkdir -p /data/rust-projects

2.プロジェクトディレクトリに移動します
# cd /data/rust-projects

3.動作確認
# nano helloworld.rs
以下のコードを記述します

fn main() {
    println!("Hello World, this is a test provided by arkgame.com");
}

ファイルをコンパイルします
# rustc helloworld.rs

コンパイルしたファイルを実行します

# ./helloworld
Hello World, this is a test provided by arkgame.com

 

Rust

Posted by arkgame