mirror of
https://github.com/rust-lang/rustlings.git
synced 2025-12-29 07:19:17 +00:00
12 lines
217 B
Rust
12 lines
217 B
Rust
// intro2.rs
|
|
//
|
|
// 讓程式碼輸出一個問候世界的訊息。
|
|
//
|
|
// 執行 `rustlings hint intro2` 或使用 `hint` watch 子命令來獲取提示。
|
|
|
|
// I AM NOT DONE
|
|
|
|
fn main() {
|
|
printline!("你好!")
|
|
}
|