2023-05-29 17:39:08 +00:00
|
|
|
// generics1.rs
|
|
|
|
//
|
|
|
|
// This shopping list program isn't compiling! Use your knowledge of generics to
|
|
|
|
// fix it.
|
|
|
|
//
|
|
|
|
// Execute `rustlings hint generics1` or use the `hint` watch subcommand for a
|
|
|
|
// hint.
|
2021-05-11 19:50:05 +00:00
|
|
|
|
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");
|
|
|
|
}
|