From d6fe20c6b923bc545a7acabdc80f74b539ff416a Mon Sep 17 00:00:00 2001 From: Armin Friedl Date: Sat, 18 Jan 2025 15:37:44 +0100 Subject: [PATCH] 010 --- exercises/010_if2.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/010_if2.zig b/exercises/010_if2.zig index f0ffb43..7bbc01c 100644 --- a/exercises/010_if2.zig +++ b/exercises/010_if2.zig @@ -10,7 +10,7 @@ pub fn main() void { // Please use an if...else expression to set "price". // If discount is true, the price should be $17, otherwise $20: - const price: u8 = if ???; + const price: u8 = if (discount) 17 else 20; std.debug.print("With the discount, the price is ${}.\n", .{price}); }