2024-06-18 13:05:28 +08:00

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");
}