pub fn stdout() File
pub fn stdout() File { return switch (native_os) { .windows => .{ .handle = std.os.windows.peb().ProcessParameters.hStdOutput, .flags = .{ .nonblocking = false }, }, else => .{ .handle = std.posix.STDOUT_FILENO, .flags = .{ .nonblocking = false }, }, }; }