mirror of
https://github.com/rust-lang/rustlings.git
synced 2025-12-29 07:19:17 +00:00
13 lines
305 B
Rust
13 lines
305 B
Rust
// generics1.rs
|
|
//
|
|
// 這個購物清單程式無法編譯!用您對泛型的了解來修復它。
|
|
//
|
|
// 執行 `rustlings hint generics1` 或使用 `hint` watch 子命令來獲取提示。
|
|
|
|
// I AM NOT DONE
|
|
|
|
fn main() {
|
|
let mut shopping_list: Vec<?> = Vec::new();
|
|
shopping_list.push("milk");
|
|
}
|