From e92cdc79f8bf6cfa8ea7923e126468aabf6690e9 Mon Sep 17 00:00:00 2001 From: Andrew Scott Date: Sun, 9 Jun 2024 11:53:30 -0400 Subject: [PATCH] Zig: completed Hello World --- zig/hello-world/hello_world.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zig/hello-world/hello_world.zig b/zig/hello-world/hello_world.zig index 14e7bb0..95dfa9c 100644 --- a/zig/hello-world/hello_world.zig +++ b/zig/hello-world/hello_world.zig @@ -1,3 +1,3 @@ pub fn hello() []const u8 { - return "Goodbye, Mars!"; + return "Hello, World!"; }