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 <cstdlib>
using namespace std;
int main()
{
std::cout << "Hello World" << std::endl;
return EXIT_SUCCESS;
cout << "Hello World" << endl;
return 0;
}