hello-world/c++/helloworld.cpp
2024-04-04 20:16:51 +02:00

6 lines
84 B
C++

#include <iostream>
int main() {
std::cout << "Hello World!\n";
return 0;
}