1
0
Fork 0
mirror of https://github.com/notohh/rustlings.git synced 2025-03-09 21:33:48 -04:00
rustlings/exercises/14_generics/generics1.rs

8 lines
187 B
Rust
Raw Normal View History

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