zig/test/standalone/windows_spawn/hello.zig
2025-12-23 22:15:12 -08:00

8 lines
252 B
Zig

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