summaryrefslogtreecommitdiff
path: root/tests/projects/zig/console/src/test.zig
blob: 84804603e30a0c4233a8a7df9b0e4875d921810e (plain)
1
2
3
4
5
6
const std = @import("std");

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