-
Notifications
You must be signed in to change notification settings - Fork 72
4.6 Loops #71
New issue
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
4.6 Loops #71
Conversation
|
||
Let’s take a look at that `while` loop we had earlier: | ||
<!-- Let’s take a look at that `while` loop we had earlier: --> | ||
早期終了を伴う `while` ループを見てみましょう: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FIXME: earlier = 既出のwhileループサンプルを指している。
- apply self-review - small refinement
@KeenS 翻訳完了しました。確認の程、宜しくお願いします。 |
|
||
```rust,ignore | ||
loop { | ||
println!("Loop forever!"); | ||
# // println!("Loop forever!"); | ||
println!("永久にループ!"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[相談]
RustがUTF-8の文字列しか受け付けない関係上今のところリテラルの文字列は翻訳しない(Windowsユーザとかが変にはまりそう)でいるのですが翻訳した方がいいと思いますか?
今までは翻訳しないか内容が重要なところは訳注で翻訳を書いたりしています。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ここでの文字列文面は全く重要でないですし、元に戻したいと思います。
コメントしました。訳は問題ありません。1つだけ相談があるのでそこだけ回答頂けたらと思います。 |
@KeenS 再確認をお願いします。 |
確認しました。お疲れ様です。 |
4.6 Loops に着手。