1
0
Fork 0
mirror of https://github.com/ratfactor/ziglings synced 2024-05-05 01:56:03 +02:00
ziglings/exercises/010_if2.zig
2023-06-22 09:41:41 +00:00

17 lines
404 B
Zig

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