This commit is contained in:
2026-06-05 23:51:45 +02:00
parent 629634e09d
commit a5bbd016eb
7 changed files with 16 additions and 7 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ pub fn main(init: std.process.Init) !void {
var stdout_writer = std.Io.File.stdout().writer(io, &.{});
const stdout = &stdout_writer.interface;
const my_num: u32 = getNumber();
const my_num: u32 = try getNumber();
try stdout.print("my_num={}\n", .{my_num});
}