openbsd-ziglibc/tests/hello.zig
Sébastien Marie a419f01538 initial import
2021-11-08 18:54:45 +00:00

6 lines
95 B
Zig

const std = @import("std");
pub fn main() void {
std.debug.print("Hello world\n", .{});
}