zig/example/hello_world/hello.zig
2019-05-26 18:32:40 -04:00

6 lines
91 B
Zig

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