diff options
author | Will Clardy <will@quexxon.net> | 2021-02-15 16:55:44 -0500 |
---|---|---|
committer | Will Clardy <will@quexxon.net> | 2021-02-15 16:55:44 -0500 |
commit | 2f821bd5e83129445179ea7bd81260df74fff295 (patch) | |
tree | 4f88d7f715dcd0bc98d20f3b7f70d49f2bdcb408 /exercises/20_quiz3.zig | |
parent | e58f155bd6261a0c1408e8bb3b177bbced828eb3 (diff) | |
download | ziglings-2f821bd5e83129445179ea7bd81260df74fff295.tar.gz ziglings-2f821bd5e83129445179ea7bd81260df74fff295.tar.bz2 ziglings-2f821bd5e83129445179ea7bd81260df74fff295.tar.xz ziglings-2f821bd5e83129445179ea7bd81260df74fff295.zip |
Apply `zig fmt` to exercises
Diffstat (limited to 'exercises/20_quiz3.zig')
-rw-r--r-- | exercises/20_quiz3.zig | 6 |
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! |