Merge pull request #738 from bdejean/patch-1

This commit is contained in:
Richie Bendall
2020-04-27 12:26:52 +12:00
committed by GitHub

View File

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