1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-03-27 16:25:43 +02:00

Make nested array example editable (#2593)

This commit is contained in:
Nicole L 2025-02-05 16:09:45 -08:00 committed by GitHub
parent fd7cb04a62
commit cdab1a4ce5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,7 +6,7 @@ minutes: 15
Arrays can contain other arrays:
```rust
```rust,editable
let array = [[1, 2, 3], [4, 5, 6], [7, 8, 9]];
```