hello-world/c++/helloworld.cpp
2024-04-04 21:45:36 +02:00

7 lines
117 B
C++

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