Files
2025-08-04 14:16:31 +00:00

12 lines
248 B
C++

// hello world example
// comments in german to test gitea diff page
// Ein Beispielprogramm für c++ um Stück für Stück das Programmieren zu lernen 123
#include <iostream>
int main() {
std::cout << "Hello World!";
return 0;
}