04_arrays.zig - missing : for type of example array

This commit is contained in:
Ivan-Velickovic 2021-02-14 15:42:42 +13:00
parent 7aca904563
commit cfcb1f3a44

View file

@ -1,7 +1,7 @@
// //
// Let's learn some array basics. Arrays are declared with: // 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 // 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 // size. You can also let Zig infer the type of the value so the