From a6b89e768fb19fa8e1ea499d6df88c898d87f48a Mon Sep 17 00:00:00 2001 From: Armin Friedl Date: Sat, 18 Jan 2025 15:36:51 +0100 Subject: [PATCH] 009 --- exercises/009_if.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/009_if.zig b/exercises/009_if.zig index 4536fc3..a053fa2 100644 --- a/exercises/009_if.zig +++ b/exercises/009_if.zig @@ -24,7 +24,7 @@ pub fn main() void { const foo = 1; // Please fix this condition: - if (foo) { + if (foo == 1) { // We want our program to print this message! std.debug.print("Foo is 1!\n", .{}); } else {