rustlings/exercises/generics/generics1.rs

11 lines
207 B
Rust
Raw Normal View History

2020-02-28 00:09:08 +00:00
// This shopping list program isn't compiling!
// Use your knowledge of generics to fix it.
// I AM NOT DONE
fn main() {
let mut shopping_list: Vec<?> = Vec::new();
shopping_list.push("milk");
}