Erstes Hello World Programm

This commit is contained in:
Cybermork 2026-03-06 00:58:58 +01:00
parent dabce46993
commit 72aaf34c1f
1 changed files with 6 additions and 0 deletions

6
helloworld.cpp Normal file
View File

@ -0,0 +1,6 @@
#include<iostream>
int main() {
std::cout << "Hello World!\n";
return 0;
}