hello.cpp

This commit is contained in:
ayush 2018-10-08 01:41:45 +05:30 committed by GitHub
parent 4da95e9a22
commit bad10e0d46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

9
code/hello.cpp Normal file
View File

@ -0,0 +1,9 @@
#include<iostream>
using namespace::std;
int main()
{
cout << "hello world";
return 0;
}