From 1832080daaf42ce8ec071721a9528326760b018f Mon Sep 17 00:00:00 2001 From: Chris Boesch <48591413+chrboesch@users.noreply.github.com> Date: Wed, 19 Apr 2023 22:14:06 +0200 Subject: [PATCH] Update 099_formatting.zig typo fixed --- exercises/099_formatting.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/099_formatting.zig b/exercises/099_formatting.zig index 788584f..6df2528 100644 --- a/exercises/099_formatting.zig +++ b/exercises/099_formatting.zig @@ -41,7 +41,7 @@ // Since we basically write to debug output in Ziglings, our output usually // looks like this: // -// std.debug.print("Text {placeholder} another text \n", .{variable}); +// print("Text {placeholder} another text \n", .{variable}); // // But how is the statement just shown formatted? //