2020-07-11 02:01:38 +00:00
|
|
|
// This shopping list program isn't compiling!
|
2020-02-28 00:09:08 +00:00
|
|
|
// Use your knowledge of generics to fix it.
|
|
|
|
|
2021-05-11 19:50:05 +00:00
|
|
|
// Execute `rustlings hint generics1` for hints!
|
|
|
|
|
2020-02-28 00:09:08 +00:00
|
|
|
// I AM NOT DONE
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let mut shopping_list: Vec<?> = Vec::new();
|
|
|
|
shopping_list.push("milk");
|
|
|
|
}
|