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