Merge pull request #13 from Ivan-Velickovic/main

04_arrays.zig - missing ":" for type of example array
pull/2/head
Dave Gauer 4 years ago committed by GitHub
commit 8edfe2f157

@ -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…
Cancel
Save