summaryrefslogtreecommitdiffstatshomepage
path: root/exercises/037_structs.zig
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/037_structs.zig')
-rw-r--r--exercises/037_structs.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/037_structs.zig b/exercises/037_structs.zig
index 8082248..7571c05 100644
--- a/exercises/037_structs.zig
+++ b/exercises/037_structs.zig
@@ -52,7 +52,7 @@ pub fn main() void {
// Ouch! Glorp takes a punch!
glorp_the_wise.health -= 10;
- std.debug.print("Your wizard has {} health and {} gold.", .{
+ std.debug.print("Your wizard has {} health and {} gold.\n", .{
glorp_the_wise.health,
glorp_the_wise.gold,
});