010_if2.zig 404 B

12345678910111213141516
  1. //
  2. // If statements are also valid expressions:
  3. //
  4. // const foo: u8 = if (a) 2 else 3;
  5. //
  6. const std = @import("std");
  7. pub fn main() void {
  8. const discount = true;
  9. // Please use an if...else expression to set "price".
  10. // If discount is true, the price should be $17, otherwise $20:
  11. const price: u8 = if ???;
  12. std.debug.print("With the discount, the price is ${}.\n", .{price});
  13. }