ziglings/exercises/010_if2.zig

17 lines
398 B
Zig
Raw Normal View History

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