aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises/20_quiz3.zig
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/20_quiz3.zig')
-rw-r--r--exercises/20_quiz3.zig6
1 files changed, 2 insertions, 4 deletions
diff --git a/exercises/20_quiz3.zig b/exercises/20_quiz3.zig
index e18ef37..651af8c 100644
--- a/exercises/20_quiz3.zig
+++ b/exercises/20_quiz3.zig
@@ -5,16 +5,15 @@
//
// Both of these are simply labeled "loop" below.
//
-const std = @import( "std" );
+const std = @import("std");
pub fn main() void {
- const my_numbers = [4]u16{ 5,6,7,8 };
+ const my_numbers = [4]u16{ 5, 6, 7, 8 };
printPowersOfTwo(my_numbers);
std.debug.print("\n", .{});
}
-//
// You won't see this every day: a function that takes an array with
// exactly four u16 numbers. This is not how you would normally pass
// an array to a function. We'll learn about slices and pointers in
@@ -28,7 +27,6 @@ fn printPowersOfTwo(numbers: [4]u16) ??? {
}
}
-//
// This function bears a striking resemblance to twoToThe() in the last
// exercise. But don't be fooled! This one does the math without the aid
// of the standard library!