mirror of
https://github.com/BloopAI/setup-zig.git
synced 2026-09-09 15:08:33 +00:00
7 lines
139 B
Zig
7 lines
139 B
Zig
const io = @import("std").io;
|
|
|
|
pub fn main() anyerror!void {
|
|
const stdout = try io.getStdOut();
|
|
try stdout.write("it works!\n");
|
|
}
|