Zig: completed Hello World

This commit is contained in:
Andrew Scott 2024-06-09 11:53:30 -04:00
parent 35caf557db
commit e92cdc79f8
Signed by: a
GPG key ID: 7CD5A5977E4931C1

View file

@ -1,3 +1,3 @@
pub fn hello() []const u8 { pub fn hello() []const u8 {
return "Goodbye, Mars!"; return "Hello, World!";
} }