···11//
22-// Zig has one array operators.
22+// Zig has one array operator.
33//
44// You can use '++' to concatenate two arrays:
55//
···77// const b = [_]u8{ 3,4 };
88// const c = a ++ b ++ [_]u8{ 5 }; // equals 1 2 3 4 5
99//
1010-// Note that '++'' only operate on arrays while your program is
1010+// Note that '++' only operates on arrays while your program is
1111// _being compiled_. This special time is known in Zig
1212// parlance as "comptime" and we'll learn plenty more about that
1313// later.