Merge pull request #269 from Ayush-Mahajan/master

hello.cpp
This commit is contained in:
Luke Oliff
2018-10-08 09:52:55 -07:00
committed by GitHub
2 changed files with 16 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
#include<stdio.h>
int main()
{
printf("Hello World");
return 0;
}
+9
View File
@@ -0,0 +1,9 @@
#include<iostream>
using namespace::std;
int main()
{
cout << "hello world";
return 0;
}