exercism/zig/hello-world/hello_world.zig

4 lines
59 B
Zig
Raw Normal View History

2024-01-03 03:10:04 -05:00
pub fn hello() []const u8 {
return "Goodbye, Mars!";
}