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