1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-12-14 11:22:55 +02:00
rustlings/exercises/generics/generics1.rs

10 lines
205 B
Rust
Raw Normal View History

// This shopping list program isn't compiling!
2020-02-28 02:09:08 +02:00
// 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");
}