Michal Bazynski 6df8a4be98 wip
2022-11-10 10:57:37 +01:00

11 lines
286 B
Rust

// 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.
fn main() {
let mut shopping_list: Vec<String> = Vec::new();
shopping_list.push("milk".into());
}