exercism/zig/hello-world/hello_world.zig

4 lines
58 B
Zig
Raw Normal View History

2024-01-03 03:10:04 -05:00
pub fn hello() []const u8 {
2024-06-09 11:53:30 -04:00
return "Hello, World!";
2024-01-03 03:10:04 -05:00
}