1 2 3 4 5 6 7 8 9 10
const std = @import("std"); const run = @import("async1.zig").run; pub const std_options: std.Options = .{ .log_level = .info, }; pub fn main(init: std.process.Init) !void { try run(8, init.io); }