summaryrefslogtreecommitdiff
path: root/xmake/templates/zig/console/project/src/test.zig
blob: 605d168c48a5bb67218e8a7d5c7beed70381af5b (plain)
1
2
3
4
5
6
const std = @import("std");

pub fn hello() !void {
    const stdout = std.io.getStdOut().writer();
    try stdout.print("Hello, {s}!\n", .{"world"});
}