aboutsummaryrefslogtreecommitdiffstatshomepage
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.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/083_anonymous_lists.zig b/exercises/083_anonymous_lists.zig
index 838d40e..daaeaff 100644
--- a/exercises/083_anonymous_lists.zig
+++ b/exercises/083_anonymous_lists.zig
@@ -18,8 +18,8 @@ pub fn main() void {
//
// Don't change this part:
//
- // = .{'h', 'e', 'l', 'l', 'o'};
+ // = .{ 'h', 'e', 'l', 'l', 'o' };
//
- const hello = .{'h', 'e', 'l', 'l', 'o'};
+ const hello = .{ 'h', 'e', 'l', 'l', 'o' };
print("I say {s}!\n", .{hello});
}