1
Fork 0
hare-nix/hello-world.ha

14 lines
259 B
Hare
Raw Normal View History

2024-05-16 21:03:29 +00:00
use fmt;
export fn main() void = {
const greetings = [
"Hello, world!",
"¡Hola Mundo!",
"Γειά σου Κόσμε!",
"Привіт, світ!",
"こんにちは世界!",
];
for (let greeting .. greetings) {
fmt::println(greeting)!;
};
};