26 - Hello, World!

This commit is contained in:
Adam Millerchip 2021-12-26 00:16:23 +09:00
parent 2faaabeacf
commit fdd27b8c43
1 changed files with 1 additions and 1 deletions

View File

@ -19,5 +19,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", .{});
}