about summary refs log tree commit diff
path: root/lang/zig/hello-again.zig
diff options
context:
space:
mode:
Diffstat (limited to 'lang/zig/hello-again.zig')
-rw-r--r--lang/zig/hello-again.zig5
1 files changed, 5 insertions, 0 deletions
diff --git a/lang/zig/hello-again.zig b/lang/zig/hello-again.zig
new file mode 100644
index 0000000..1ef4af6
--- /dev/null
+++ b/lang/zig/hello-again.zig
@@ -0,0 +1,5 @@
+const print = @import("std").debug.print;
+
+pub fn main() void {
+    print("Hello, {s}!\n", .{"world"});
+}