翻譯註釋

This commit is contained in:
TimLai666 2024-06-10 14:16:29 +08:00 committed by GitHub
parent c65dfcb3b6
commit 479bb09f5b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 13 deletions

View File

@ -1,17 +1,14 @@
// intro1.rs
//
// About this `I AM NOT DONE` thing:
// We sometimes encourage you to keep trying things on a given exercise, even
// after you already figured it out. If you got everything working and feel
// ready for the next exercise, remove the `I AM NOT DONE` comment below.
// 關於這個 `I AM NOT DONE` 標註:
// 我們有時會鼓勵您在已經解決一個練習之後繼續嘗試,即使您已經找到了答案。
// 如果您已經完成了所有工作並且準備好進行下一個練習,請刪除下面的 `I AM NOT DONE` 註釋。
//
// If you're running this using `rustlings watch`: The exercise file will be
// reloaded when you change one of the lines below! Try adding a `println!`
// line, or try changing what it outputs in your terminal. Try removing a
// semicolon and see what happens!
// 如果您正在使用 `rustlings watch` 運行這個文件: 每當您更改下面的一行代碼時,練習文件將會重新加載!
// 嘗試添加一行 `println!`,或者嘗試改變它在終端輸出的內容。
// 嘗試刪除一個分號,看看會發生什麼!
//
// Execute `rustlings hint intro1` or use the `hint` watch subcommand for a
// hint.
// 執行 `rustlings hint intro1` 或使用 `hint` watch 子命令來獲取提示。
// I AM NOT DONE

View File

@ -1,9 +1,8 @@
// intro2.rs
//
// Make the code print a greeting to the world.
// 讓程式碼輸出一個問候世界的訊息。
//
// Execute `rustlings hint intro2` or use the `hint` watch subcommand for a
// hint.
// 執行 `rustlings hint intro2` 或使用 `hint` watch 子命令來獲取提示。
// I AM NOT DONE