This commit is contained in:
Jonathan Baugh 2021-07-07 20:29:07 +02:00 committed by GitHub
commit 4fc41e5541
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,6 +6,6 @@
// I AM NOT DONE // I AM NOT DONE
fn main() { fn main() {
let mut shopping_list: Vec<?> = Vec::new(); let mut shopping_list: Vec<???> = Vec::new();
shopping_list.push("milk"); shopping_list.push("milk");
} }