rustlings/exercises/generics/generics1.rs

13 lines
300 B
Rust
Raw Normal View History

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