blob: d075a4d2a7ece8357b0a2c4a8745733cb88fefc0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// This shopping list program isn't compiling!
// Use your knowledge of generics to fix it.
// I AM NOT DONE
fn main() {
let mut shopping_list: Vec<?> = Vec::new();
shopping_list.push("milk");
}
|