Merge pull request #320 from Knhash/patch-1

Update c++.cpp to be simpler
This commit is contained in:
Mike Donaghy
2017-02-12 15:57:38 -06:00
committed by GitHub

View File

@@ -1,8 +1,9 @@
#include <iostream> #include <iostream>
#include <cstdlib>
using namespace std;
int main() int main()
{ {
std::cout << "Hello World" << std::endl; cout << "Hello World" << endl;
return EXIT_SUCCESS; return 0;
} }