zig/test/standalone/windows_spawn/hello.zig
2025-07-07 22:43:53 -07:00

7 lines
211 B
Zig

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