summaryrefslogtreecommitdiffstatshomepage
path: root/exercises/20_quiz3.zig
diff options
context:
space:
mode:
authorWill Clardy <will@quexxon.net>2021-02-15 16:55:44 -0500
committerWill Clardy <will@quexxon.net>2021-02-15 16:55:44 -0500
commit238beb4a2d3c2eacbb21bba03dcfcf1db3ec3dcb (patch)
tree4f88d7f715dcd0bc98d20f3b7f70d49f2bdcb408 /exercises/20_quiz3.zig
parent97ae27435b3782ddbde69fccc5f40caee5dda2cd (diff)
Apply `zig fmt` to exercises
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!