aboutsummaryrefslogtreecommitdiff
path: root/exercises/026_hello2.zig
diff options
context:
space:
mode:
authorDave Gauer <ratfactor@gmail.com>2022-07-31 09:52:31 -0400
committerGitHub <noreply@github.com>2022-07-31 09:52:31 -0400
commitee4e397d246950196bef07b52826dbbcbeaaf505 (patch)
tree325622ca01881256ce131785a8ca07865cc0c484 /exercises/026_hello2.zig
parent4ca95215b6b088d5bb1fd547214d514ba964acdb (diff)
parentf07c503b77482334e71307f289de20a15a8387d5 (diff)
downloadziglings-ee4e397d246950196bef07b52826dbbcbeaaf505.tar.gz
ziglings-ee4e397d246950196bef07b52826dbbcbeaaf505.tar.bz2
ziglings-ee4e397d246950196bef07b52826dbbcbeaaf505.tar.xz
ziglings-ee4e397d246950196bef07b52826dbbcbeaaf505.zip
Merge pull request #107 from winterqt/remove-extraneous-newline
Remove extraneous newlines in exercises 26 and 44
Diffstat (limited to 'exercises/026_hello2.zig')
-rw-r--r--exercises/026_hello2.zig1
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();