Files
setup-zig/test/src/main.zig
Renée Kooi f1d92abfe0 test it
2019-10-05 12:54:14 +02:00

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");
}