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
commit 392558c92f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

8
HelloWorld.cpp Normal file
View File

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