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
|
|
|
|
2021-02-07 17:06:51 +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});
|
|
|
|
}
|