Rust Dojo #01
Rust Dojo #01
はじめに
社内で Rust Dojo を行ったので、内容をメモしていく。
教材はRust By Example 日本語版を中心に進めていく。
#01
の内容は以下の通り
インストール
参考: インストール - The Rust Programming Language 日本語版
wsl の場合、以下のコマンドを実行する。
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
# Rust is installed now. Great!
# To get started you may need to restart your current shell.
# This would reload your PATH environment variable to include
# Cargo's bin directory ($HOME/.cargo/bin).
# To configure your current shell, run:
# source $HOME/.cargo/env
source $HOME/.cargo/env
インストール完了!
以下のコマンドでインストールされたツールを確認できる。
rustc --version
# rustc 1.53.0 (53cb7b09b 2021-06-17)
cargo --version
# cargo 1.53.0 (4369396ce 2021-04-27)
rustup --version
# rustup 1.24.3 (ce5817a94 2021-05-31)
# info: This is the version for the rustup toolchain manager, not the rustc compiler.
# info: The currently active `rustc` version is `rustc 1.53.0 (53cb7b09b 2021-06-17)`
Hello World
参考: Hello, World! - The Rust Programming Language 日本語版
ソース: https://github.com/eyuta/the-rust-programming-language/blob/01__hello_world/hello.rs
ファイルを作成後、以下のコードを入力する。
尚、Rust のファイルは.rs
という拡張子を用いる。
また、単語の区切りには_
を用いる(ex. hello_world.rs
)。
touch hello.rs
// This is a comment, and is ignored by the compiler
// You can test this code by clicking the "Run" button over there ->
// or if you prefer to use your keyboard, you can use the "Ctrl + Enter" shortcut
// これはコメントです。コンパイラによって無視されます。
// 右にある「Run」ボタンからこのコードをテストできます。
// キーボードを使いたければ「Ctrl + Enter」もOKです。
// This code is editable, feel free to hack it!
// You can always return to the original code by clicking the "Reset" button ->
// このコードは編集可能です。ぜひハックしてみましょう!
// 「Reset」ボタンでいつでも元のコードに戻すことができます ->
// This is the main function
// main関数です
fn main() {
// Statements here are executed when the compiled binary is called
// コンパイルされたバイナリが実行されるとこの関数が呼び出されます
// Print text to the console
// コンソールに文字列を出力する
println!("Hello World!");
}
※println!
は関数ではなく、マクロと呼ばれるメタプログラミング手法。関数と異なり、コンパイル前に展開される。
コンパイル後にバイナリファイルを実行すると、Hello World!
が出力される。
rustc hello.rs
./hello
# Hello World!
演習
上に書いている'Run'をクリックしてアウトプットを見てみましょう。 次に、println!マクロをもう一行追加してアウトプットがどうなるか見てみましょう。
Hello World! I'm a Rustacean!
最後の行に println!("I'm a Rustacean!")
を加える。
rustc hello.rs && ./hello
# Hello World!
# I'm a Rustacean!
因みに、Rustacean とは Rust 使いのこと(Python 使いを Pythonista と呼ぶのと同様)。
以下によると、Rustacean
はCrustacean
(甲殻類)が由来とのこと。
参考: https://mobile.twitter.com/rustlang/status/916284650674323457
コメント
参考:
ソース: https://github.com/eyuta/the-rust-programming-language/blob/02__comments/hello.rs
コメントには以下の 2 種類がある
通常のコメント (Non-doc comments)
C++スタイルのコメント。
コンパイル時に空白として解釈される。
-
//
Line comments. 行末までコメントアウト -
/*
Block comment.ブロックによって囲まれた部分をコメントアウト*/
ドキュメンテーションコメント (Doc comments)
以下の形式のコメントはドキュメンテーションコメントであり、doc attributeのシンタックスシュガーとして解釈される。
rustdoc
コマンドでドキュメントを生成する際に使用される。
- Outer doc
- このコメントの後続の内容に関するドキュメント。以下の 2 種類がある
-
///
Outer line doc. -
/**
Outer block doc.*/
-
- このコメントの後続の内容に関するドキュメント。以下の 2 種類がある
- Inner doc
- このコメントの親の内容に関するドキュメント。以下の 2 種類がある
-
//!
Inner line doc. -
/*!
Inner block doc.*/
-
- このコメントの親の内容に関するドキュメント。以下の 2 種類がある
ドキュメントに関する詳細はこちら
試しにドキュメントを作成してみる。
touch documents.rs
ソースコードはこちらを活用した。
//! A doc comment that applies to the implicit anonymous module of this crate
/// Outer line doc
pub mod outer_module {
//! - Inner line doc
//!! - Still an inner line doc (but with a bang at the beginning)
/*! - Inner block doc */
/*!! - Still an inner block doc (but with a bang at the beginning) */
// - Only a comment
/// - Outer line doc (exactly 3 slashes)
//// - Only a comment
/* - Only a comment */
/** - Outer block doc (exactly) 2 asterisks */
/*** - Only a comment */
pub mod inner_module {}
pub mod nested_comments {
/* In Rust /* we can /* nest comments */ */ */
// All three types of block comments can contain or be nested inside
// any other type:
/* /* */ /** */ /*! */ */
/*! /* */ /** */ /*! */ */
/** /* */ /** */ /*! */ */
pub mod dummy_item {}
}
pub mod degenerate_cases {
// empty inner line doc
//!
// empty inner block doc
/*!*/
// empty line comment
//
// empty outer line doc
///
// empty block comment
/**/
pub mod dummy_item {}
// empty 2-asterisk block isn't a doc block, it is a block comment
/***/
}
/* The next one isn't allowed because outer doc comments
require an item that will receive the doc */
/// Where is my item?
mod boo {}
}
ドキュメントを生成する。
rustdoc documents.rs
# /doc/ が作成される
/doc/documents/index.html
をブラウザで開くと、以下のように表示されるのが確認できる。
outer_module
をクリックすると、モジュール(mod
)の中身を表示できる。
Discussion