summaryrefslogtreecommitdiff
path: root/exercises/083_anonymous_lists.zig
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/083_anonymous_lists.zig')
-rw-r--r--exercises/083_anonymous_lists.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/083_anonymous_lists.zig b/exercises/083_anonymous_lists.zig
index daaeaff..82d008a 100644
--- a/exercises/083_anonymous_lists.zig
+++ b/exercises/083_anonymous_lists.zig
@@ -20,6 +20,6 @@ pub fn main() void {
//
// = .{ 'h', 'e', 'l', 'l', 'o' };
//
- const hello = .{ 'h', 'e', 'l', 'l', 'o' };
+ const hello: [5]u8 = .{ 'h', 'e', 'l', 'l', 'o' };
print("I say {s}!\n", .{hello});
}