piston/lxc/tests/zig.zig

7 lines
138 B
Zig
Raw Normal View History

2021-01-23 22:15:00 +01:00
const std = @import("std");
pub fn main() !void {
const stdout = std.io.getStdOut().writer();
try stdout.print("good\n", .{});
}