2022-08-15 19:41:57 +03:00

12 lines
255 B
Rust

// This shopping list program isn't compiling!
// Use your knowledge of generics to fix it.
// Execute `rustlings hint generics1` for hints!
// I AM NOT DONE
fn main() {
let mut shopping_list: Vec<_> = Vec::new();
shopping_list.push("milk");
}