diff --git a/src/doc/guide.md b/src/doc/guide.md index 091437409c3..cab31fc5a9a 100644 --- a/src/doc/guide.md +++ b/src/doc/guide.md @@ -1507,6 +1507,7 @@ You can create an array with just square brackets: ```{rust} let nums = [1i, 2i, 3i]; +let nums = [1i, ..20]; // Shorthand for an array of 20 elements all initialized to 1 ``` So what's the difference? An array has a fixed size, so you can't add or