Hello, world!

This commit is contained in:
2026-08-04 17:59:25 +02:00
commit 6e3590d532
6 changed files with 42 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
#include <iostream>
void helloWorld(void) {
std::cout << "Hello, world!" << std::endl;
}