aboutsummaryrefslogtreecommitdiff
path: root/test/standalone/simple/hello_world/hello.zig
blob: 3b2b9106877512d914f9014d57d8fbb1c1a97b82 (plain)
1
2
3
4
5
const std = @import("std");

pub fn main() !void {
    try std.fs.File.stdout().writeAll("Hello, World!\n");
}