mirror of
https://git.aramjonghu.dev/AramJonghu/ziglings.git
synced 2026-09-05 01:33:30 +02:00
Added Ex 9,10 for If
This commit is contained in:
+20
@@ -0,0 +1,20 @@
|
||||
//
|
||||
// If statements are also valid expressions:
|
||||
//
|
||||
// foo = if (a) 2 else 3;
|
||||
//
|
||||
// Note: you'll need to declare a variable type when assigning a value
|
||||
// from a statement like this because the compiler isn't smart enough
|
||||
// to infer the type for you.
|
||||
//
|
||||
const std = @import("std");
|
||||
|
||||
pub fn main() void {
|
||||
var discount = true;
|
||||
|
||||
// If discount is true, the price should be $17, otherwise $20:
|
||||
var price = if ???;
|
||||
|
||||
std.debug.print("With the discount, the price is ${}.\n", .{price});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user