Initial Commit

This commit is contained in:
2012-01-22 16:14:32 -05:00
commit f5e306f67f
155 changed files with 5097 additions and 0 deletions

10
C/hello.c Normal file
View File

@@ -0,0 +1,10 @@
/**
* This is a simple Hello World program writen in C
* @author ricky barrette
* @date 10 17, 2011
*/
#include "stdio.h"
void main() {
printf("Hello World\n");
}