Merge pull request #216 from jatinagg1/master

first commit
This commit is contained in:
Josh Cunningham 2018-10-09 08:22:07 -07:00 committed by GitHub
commit 52301802c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

8
code/HelloWorld_jatin.py Normal file
View File

@ -0,0 +1,8 @@
//Jatin Aggarwal
#include <stdio.h>
int main()
{
printf("Hello, World!");
return 0;
}