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