mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
8 lines
211 B
Zig
8 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");
|
|
}
|