summaryrefslogtreecommitdiff
path: root/exercises/026_hello2.zig
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2025-08-24 14:59:26 +0200
committerChris Boesch <chrboesch@noreply.codeberg.org>2025-08-24 14:59:26 +0200
commita46db7e0e84718d1898d26b3d798c767792c0779 (patch)
tree9233974b52c566b83c865239fd7c73954315e2b1 /exercises/026_hello2.zig
parentf5d2c5124c2728d14d4c349c9287edb00f9eb633 (diff)
parent564ea3405d2dce481001c52b64784b5fce4bd37a (diff)
Merge branch 'main' into test-expect
Diffstat (limited to 'exercises/026_hello2.zig')
-rw-r--r--exercises/026_hello2.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/026_hello2.zig b/exercises/026_hello2.zig
index cd59b86..582dba9 100644
--- a/exercises/026_hello2.zig
+++ b/exercises/026_hello2.zig
@@ -16,12 +16,12 @@ const std = @import("std");
//
pub fn main() !void {
// We get a Writer for Standard Out so we can print() to it.
- const stdout = std.io.getStdOut().writer();
+ var stdout = std.fs.File.stdout().writer(&.{});
// Unlike std.debug.print(), the Standard Out writer can fail
// with an error. We don't care _what_ the error is, we want
// to be able to pass it up as a return value of main().
//
// We just learned of a single statement which can accomplish this.
- stdout.print("Hello world!\n", .{});
+ stdout.interface.print("Hello world!\n", .{});
}