Merge pull request #120 from Gunni/patch-1

Removed namespace, added namespace on the function calls
This commit is contained in:
Mike Donaghy
2014-01-26 15:41:06 -08:00

View File

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