This repository has been archived on 2023-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
rustlings-exercises-completed/exercises/generics/generics1.rs

10 lines
276 B
Rust
Raw Normal View History

// This shopping list program isn't compiling!
2020-02-27 18:09:08 -06:00
// Use your knowledge of generics to fix it.
2022-07-14 11:11:05 -05:00
// Execute `rustlings hint generics1` or use the `hint` watch subcommand for a hint.
2020-02-27 18:09:08 -06:00
fn main() {
2023-03-24 16:18:51 -05:00
let mut shopping_list: Vec<&str> = Vec::new();
2020-02-27 18:09:08 -06:00
shopping_list.push("milk");
}