const std = @import("std"); pub fn main() !void { var stdout_writer = std.fs.File.stdout().writer(&.{}); const stdout = &stdout_writer.interface; try stdout.writeAll("Hello, Zlox!\n"); }