aboutsummaryrefslogtreecommitdiff
path: root/exercises/10_if2.zig
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2021-02-09 18:36:57 -0500
committerDave Gauer <dave@ratfactor.com>2021-02-09 18:36:57 -0500
commit55ad7c32f2d534b1fbd438204d21738f958c51a5 (patch)
tree16be4b53193105a759b3eec25be5e664d41c428d /exercises/10_if2.zig
parentcf0920de31e9b5f3c5ba6de19a1b4c8d0c58b907 (diff)
downloadziglings-55ad7c32f2d534b1fbd438204d21738f958c51a5.tar.gz
ziglings-55ad7c32f2d534b1fbd438204d21738f958c51a5.tar.bz2
ziglings-55ad7c32f2d534b1fbd438204d21738f958c51a5.tar.xz
ziglings-55ad7c32f2d534b1fbd438204d21738f958c51a5.zip
Moved exercises to exercises because exercises
Diffstat (limited to 'exercises/10_if2.zig')
-rw-r--r--exercises/10_if2.zig25
1 files changed, 25 insertions, 0 deletions
diff --git a/exercises/10_if2.zig b/exercises/10_if2.zig
new file mode 100644
index 0000000..4f559cd
--- /dev/null
+++ b/exercises/10_if2.zig
@@ -0,0 +1,25 @@
+//
+// If statements are also valid expressions:
+//
+// var foo: u8 = 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.
+//
+// This WON'T work:
+//
+// var foo = if (a) 2 else 3; // error!
+//
+const std = @import("std");
+
+pub fn main() void {
+ var discount = true;
+
+ // Please use an if...else expression to set "price".
+ // 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});
+}
+