summaryrefslogtreecommitdiffstatshomepage
path: root/exercises/006_strings.zig
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/006_strings.zig')
-rw-r--r--exercises/006_strings.zig4
1 files changed, 3 insertions, 1 deletions
diff --git a/exercises/006_strings.zig b/exercises/006_strings.zig
index 8ff98f5..5a7172c 100644
--- a/exercises/006_strings.zig
+++ b/exercises/006_strings.zig
@@ -7,10 +7,12 @@
//
// const foo = "Hello";
//
-// Is the same as:
+// Is almost* the same as:
//
// const foo = [_]u8{ 'H', 'e', 'l', 'l', 'o' };
//
+// (* We'll see what Zig strings REALLY are in Exercise 77.)
+//
// Notice how individual characters use single quotes ('H') and
// strings use double quotes ("H"). These are not interchangeable!
//