summaryrefslogtreecommitdiff
path: root/exercises/026_hello2.zig
diff options
context:
space:
mode:
authorArnold Filip <arnold.filip@gmail.com>2025-07-22 09:17:24 +0200
committerArnold Filip <arnold.filip@gmail.com>2025-07-22 09:17:24 +0200
commitf21f8f7863f512aed8ae0418351756819990df67 (patch)
tree83eaf556b82952deb5ec6c3d0e818b047832cc2a /exercises/026_hello2.zig
parentb499788606d83aac75e82da2d32b5b7ceb3d6896 (diff)
Update stdout writer usage to use std.fs.File
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", .{});
}