We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
最初のRustプログラムを書きましょう。新しい言語を学ぶ際に、 Hello, world!というテキストを画面に出力する小さなプログラムを書く。
The text was updated successfully, but these errors were encountered:
VSCodeで下記のソースを記述して保存
fn main() { println!("Hello World!"); }
Sorry, something went wrong.
implements hello world refs #2
bdfd91e
$ rustc hello_world.rs
でコンパイルすると
$ ls hello_world.exe hello_world.pdb hello_world.rs
hello_world.exe と hello_world.pdb の2つのファイルができる。 hello_world.exe を実行すると出力される
$ ./hello_world.exe Hello World!
No branches or pull requests
最初のRustプログラムを書きましょう。新しい言語を学ぶ際に、 Hello, world!というテキストを画面に出力する小さなプログラムを書く。
The text was updated successfully, but these errors were encountered: