1
Fork 0

remove hello-world

This commit is contained in:
Jan-Erik Rediger 2024-06-02 00:21:24 +02:00
parent e28ce4dc9b
commit 8e7bec40c9
2 changed files with 0 additions and 14 deletions

Binary file not shown.

View file

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