mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-08 07:46:46 +02:00
[zig] simpler multidimensional arrays (#5262)
This commit is contained in:
8
zig.md
8
zig.md
@@ -153,10 +153,10 @@ try some_integers[i]; // Runtime error 'index out of bounds'.
|
|||||||
|
|
||||||
```zig
|
```zig
|
||||||
const mat4x4 = [4][4]f32{
|
const mat4x4 = [4][4]f32{
|
||||||
[_]f32{ 1.0, 0.0, 0.0, 0.0 },
|
.{ 1, 0, 0, 0 },
|
||||||
[_]f32{ 0.0, 1.0, 0.0, 1.0 },
|
.{ 0, 1, 0, 1 },
|
||||||
[_]f32{ 0.0, 0.0, 1.0, 0.0 },
|
.{ 0, 0, 1, 0 },
|
||||||
[_]f32{ 0.0, 0.0, 0.0, 1.0 },
|
.{ 0, 0, 0, 1 },
|
||||||
};
|
};
|
||||||
|
|
||||||
// Access the 2D array then the inner array through indexes.
|
// Access the 2D array then the inner array through indexes.
|
||||||
|
Reference in New Issue
Block a user