ziglings/exercises/010_if2.zig

17 lines
422 B
Zig
Raw Permalink Normal View History

2021-01-08 23:53:22 +01:00
//
// If statements are also valid expressions:
//
2023-06-22 11:41:41 +02:00
// const foo: u8 = if (a) 2 else 3;
2021-01-08 23:53:22 +01:00
//
const std = @import("std");
pub fn main() void {
2023-06-22 11:41:41 +02:00
const discount = true;
2021-01-08 23:53:22 +01:00
// Please use an if...else expression to set "price".
2021-01-08 23:53:22 +01:00
// If discount is true, the price should be $17, otherwise $20:
2024-05-27 15:21:28 +02:00
const price: u8 = if (discount) 17 else 20;
2021-01-08 23:53:22 +01:00
std.debug.print("With the discount, the price is ${}.\n", .{price});
}