diff options
| author | Dave Gauer <[email protected]> | 2022-03-19 19:46:29 -0400 |
|---|---|---|
| committer | Dave Gauer <[email protected]> | 2022-03-19 19:46:29 -0400 |
| commit | 361630fdce8a3b4868590c2b2e96625455fa4485 (patch) | |
| tree | 05cca621dbd73725542b72f9f630d9f8913559a6 | |
| parent | f7ffd83f182371e4b3b4d124c2de59fa7c40b81a (diff) | |
| download | ziglings-361630fdce8a3b4868590c2b2e96625455fa4485.tar.xz ziglings-361630fdce8a3b4868590c2b2e96625455fa4485.zip | |
Improve wording in 005 arrays2 for #93
Hopefully less misleading now - explicit about comptime
operators.
| -rw-r--r-- | exercises/005_arrays2.zig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/exercises/005_arrays2.zig b/exercises/005_arrays2.zig index c5df8d4..497d400 100644 --- a/exercises/005_arrays2.zig +++ b/exercises/005_arrays2.zig @@ -11,6 +11,11 @@ // // const d = [_]u8{ 1,2,3 } ** 2; // equals 1 2 3 1 2 3 // +// Note that both '++' and '**' only operate on arrays while your +// program is _being compiled_. This special time is known in Zig +// parlance as "comptime" and we'll learn plenty more about that +// later. +// const std = @import("std"); pub fn main() void { |
