1const std = @import("std"); 2 3pub fn main() !void { 4 var stdout_writer = std.fs.File.stdout().writerStreaming(&.{}); 5 const stdout = &stdout_writer.interface; 6 try stdout.writeAll("hello from exe\n"); 7}