hello-world/c++/helloworld.cpp

6 lines
84 B
C++
Raw Normal View History

2024-04-04 18:16:51 +00:00
#include <iostream>
int main() {
std::cout << "Hello World!\n";
return 0;
}