zig/test/standalone/hello_world/hello.zig

6 lines
109 B
Zig
Raw Normal View History

const std = @import("std");
2015-11-24 01:43:45 -08:00
2018-01-31 19:48:40 -08:00
pub fn main() !void {
try std.io.getStdOut().writeAll("Hello, World!\n");
2015-08-05 15:46:40 -07:00
}