hello-world/c++/helloworld.cpp

7 lines
117 B
C++
Raw Permalink Normal View History

2024-04-04 19:45:36 +00:00
//compiles and runs successfully
2024-04-04 18:16:51 +00:00
#include <iostream>
int main() {
std::cout << "Hello World!\n";
return 0;
}