about summary refs log tree commit diff
path: root/lang/zig/hello-again.zig
blob: 1ef4af60c4ce5c5f53df2deb07071306a9c44f1d (plain) (blame)
1
2
3
4
5
const print = @import("std").debug.print;

pub fn main() void {
    print("Hello, {s}!\n", .{"world"});
}