aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises/026_hello2.zig
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/026_hello2.zig')
-rw-r--r--exercises/026_hello2.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/026_hello2.zig b/exercises/026_hello2.zig
index cd59b86..64c64c4 100644
--- a/exercises/026_hello2.zig
+++ b/exercises/026_hello2.zig
@@ -23,5 +23,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", .{});
}