Merge pull request #215 from vimuDeshan/master

hello world in cpp
This commit is contained in:
Josh Cunningham
2018-10-09 08:21:41 -07:00
committed by GitHub

8
HelloWorld.cpp Normal file
View File

@@ -0,0 +1,8 @@
#include <iostream>
using namespace std;
int main()
{
cout <<"\nHello World"<< endl;
return 0;
}