Merge 74a8c7959f4fe6ff8e32bc1d979b3454c0bec525 into 7850a73d95c02840f4ab3bf8d9571b08410e5467

This commit is contained in:
Grimace of Despair 2025-12-26 11:05:40 -05:00 committed by GitHub
commit 615485897b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,7 +2,6 @@ fn array_and_vec() -> ([i32; 4], Vec<i32>) {
let a = [10, 20, 30, 40]; // Array
// TODO: Create a vector called `v` which contains the exact same elements as in the array `a`.
// Use the vector macro.
// let v = ???;
(a, v)