1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

最初のRustプログラム

Last updated at Posted at 2020-03-01

#Hello,World!
最初に書くプログラムはHello,World!と決まっています。

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

このコードを実行すると「Hello,World!」と出力されます。
画面に文字を出すのは波カッコ{ }で囲まれている部分です。

println!("Hello,World!");

それ以外の部分は関数を定義するための構文です。


//mainという名前の関数を定義している。
fn main(){
    //main関数の中身を書く
}

//で始まる行はプログラムの動作に影響を与えません。コメントといいます。プログラムが何をするかを分かりやすく書くためのものです。
main関数は特別な関数です。プログラムの開始場所となる役目を持っています。

目次

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?