diff options
author | Winter <winter@winter.cafe> | 2022-06-24 17:03:48 -0400 |
---|---|---|
committer | Winter <winter@winter.cafe> | 2022-06-24 21:42:03 -0400 |
commit | f07c503b77482334e71307f289de20a15a8387d5 (patch) | |
tree | 2058890e5d26604657c5efed33953c8a569f9e6e /exercises/026_hello2.zig | |
parent | 1a89e4ebf13756541916cf5ed47866a3dd7e74df (diff) | |
download | ziglings-f07c503b77482334e71307f289de20a15a8387d5.tar.gz ziglings-f07c503b77482334e71307f289de20a15a8387d5.tar.bz2 ziglings-f07c503b77482334e71307f289de20a15a8387d5.tar.xz ziglings-f07c503b77482334e71307f289de20a15a8387d5.zip |
Remove extraneous newlines in exercises 26 and 44
Diffstat (limited to 'exercises/026_hello2.zig')
-rw-r--r-- | exercises/026_hello2.zig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/exercises/026_hello2.zig b/exercises/026_hello2.zig index 237d27c..cb29193 100644 --- a/exercises/026_hello2.zig +++ b/exercises/026_hello2.zig @@ -10,7 +10,6 @@ const std = @import("std"); // that Zig will infer the error type. This is appropriate in the case // of main(), but can have consequences elsewhere. pub fn main() !void { - // We get a Writer for Standard Out so we can print() to it. const stdout = std.io.getStdOut().writer(); |