From 2f821bd5e83129445179ea7bd81260df74fff295 Mon Sep 17 00:00:00 2001 From: Will Clardy Date: Mon, 15 Feb 2021 16:55:44 -0500 Subject: Apply `zig fmt` to exercises --- exercises/19_functions2.zig | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'exercises/19_functions2.zig') diff --git a/exercises/19_functions2.zig b/exercises/19_functions2.zig index c323be8..00f33c5 100644 --- a/exercises/19_functions2.zig +++ b/exercises/19_functions2.zig @@ -7,7 +7,7 @@ // ... // } // -const std = @import( "std" ); +const std = @import("std"); pub fn main() void { std.debug.print("Powers of two: {} {} {} {}\n", .{ @@ -18,7 +18,6 @@ pub fn main() void { }); } -// // Please give this function the correct input parameter(s). // You'll need to figure out the parameter name and type that we're // expecting. The output type has already been specified for you. -- cgit v1.2.3-ZIG