mirror of
https://codeberg.org/andyscott/ziglings.git
synced 2024-11-08 11:20:46 -05:00
04_arrays.zig - missing : for type of example array
This commit is contained in:
parent
96cb465fb8
commit
d3d3499692
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
//
|
||||
// Let's learn some array basics. Arrays are declared with:
|
||||
//
|
||||
// var foo [3]u32 = [3]u32{ 42, 108, 5423 };
|
||||
// var foo: [3]u32 = [3]u32{ 42, 108, 5423 };
|
||||
//
|
||||
// When Zig can infer the size of the array, you can use '_' for the
|
||||
// size. You can also let Zig infer the type of the value so the
|
||||
|
|
Loading…
Reference in a new issue