summaryrefslogtreecommitdiff
path: root/exercises/009_if.zig
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/009_if.zig')
-rw-r--r--exercises/009_if.zig6
1 files changed, 3 insertions, 3 deletions
diff --git a/exercises/009_if.zig b/exercises/009_if.zig
index 4536fc3..e167104 100644
--- a/exercises/009_if.zig
+++ b/exercises/009_if.zig
@@ -21,13 +21,13 @@
const std = @import("std");
pub fn main() void {
- const foo = 1;
+ const foo = 42;
// Please fix this condition:
if (foo) {
// We want our program to print this message!
- std.debug.print("Foo is 1!\n", .{});
+ std.debug.print("Foo is 42!\n", .{});
} else {
- std.debug.print("Foo is not 1!\n", .{});
+ std.debug.print("Foo is not 42!\n", .{});
}
}