From 5257941f40554da3f8df074443a4c087dcff7004 Mon Sep 17 00:00:00 2001 From: Martin Ashby Date: Sat, 10 Dec 2022 23:02:40 +0000 Subject: 25-60 complete --- exercises/026_hello2.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'exercises/026_hello2.zig') diff --git a/exercises/026_hello2.zig b/exercises/026_hello2.zig index cb29193..af840f2 100644 --- a/exercises/026_hello2.zig +++ b/exercises/026_hello2.zig @@ -18,5 +18,5 @@ pub fn main() !void { // 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", .{}); + try stdout.print("Hello world!\n", .{}); } -- cgit v1.2.3-ZIG