mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-27 19:09:47 +03:00
9 lines
252 B
Zig
9 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");
|
|
}
|