rustlings/exercises/generics/generics1.rs

12 lines
291 B
Rust
Raw Normal View History

// This shopping list program isn't compiling!
2020-02-28 03:09:08 +03:00
// Use your knowledge of generics to fix it.
2022-07-14 19:11:05 +03:00
// Execute `rustlings hint generics1` or use the `hint` watch subcommand for a hint.
2020-02-28 03:09:08 +03:00
// I AM NOT DONE
fn main() {
let mut shopping_list: Vec<?> = Vec::new();
shopping_list.push("milk");
}