C++: Hello World!
Hello WorldThis post is old. Codes, opinions and facts could be outdated.
Help to fix potential errors: GitHub
// HelloWorld.cpp
#include <iostream>
int main(){
std::cout << "Hello World!" << std::endl;
return 0;
}