1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-07-01 12:44:55 +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

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]];
```