aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises/20_quiz3.zig
diff options
context:
space:
mode:
authorDave Gauer <ratfactor@gmail.com>2021-02-15 19:32:00 -0500
committerGitHub <noreply@github.com>2021-02-15 19:32:00 -0500
commita2b6b68a255c2d050e4f53a5082c38ec810c1b24 (patch)
tree45f2eba30d72f43df60cd9b053ebaea5dfe11f18 /exercises/20_quiz3.zig
parent882a6b6198148673ec97c6e38443f8e2a6a6b576 (diff)
parentbbe93b1f12ae60258a6322e8ec2212fd072b777a (diff)
Merge pull request #22 from quexxon/apply-zig-fmt
Apply `zig fmt` to exercises and generate remaining patch files
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!