1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-03-19 21:18:43 +02:00

13 lines
297 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() {
let mut shopping_list: Vec<?> = Vec::new();
shopping_list.push("milk");
}