2023-05-29 13:39:08 -04:00
|
|
|
// This shopping list program isn't compiling! Use your knowledge of generics to
|
|
|
|
// fix it.
|
2021-05-11 15:50:05 -04:00
|
|
|
|
2020-02-27 19:09:08 -05:00
|
|
|
fn main() {
|
|
|
|
let mut shopping_list: Vec<?> = Vec::new();
|
|
|
|
shopping_list.push("milk");
|
|
|
|
}
|