aboutsummaryrefslogtreecommitdiff
path: root/10_if2.zig
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2021-01-08 17:53:22 -0500
committerDave Gauer <dave@ratfactor.com>2021-01-08 17:53:22 -0500
commit0bb89e3e41cef893c158326a209aec129382c275 (patch)
tree9b306d886616628485dcecb1c822911853313bb2 /10_if2.zig
parentb9b89737fca7cc80b7d1b1527445e0ec71b25dda (diff)
downloadziglings-0bb89e3e41cef893c158326a209aec129382c275.tar.gz
ziglings-0bb89e3e41cef893c158326a209aec129382c275.tar.bz2
ziglings-0bb89e3e41cef893c158326a209aec129382c275.tar.xz
ziglings-0bb89e3e41cef893c158326a209aec129382c275.zip
Added Ex 9,10 for If
Diffstat (limited to '10_if2.zig')
-rw-r--r--10_if2.zig20
1 files changed, 20 insertions, 0 deletions
diff --git a/10_if2.zig b/10_if2.zig
new file mode 100644
index 0000000..5e78d54
--- /dev/null
+++ b/10_if2.zig
@@ -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});
+}
+