This commit is contained in:
Triggered_Tux 2019-01-06 14:35:41 -05:00
parent 517a30eba4
commit 942c6d053e
1 changed files with 6 additions and 0 deletions

6
helloworld.c Normal file
View File

@ -0,0 +1,6 @@
#include <stdio.h>
int main() {
printf("Hello World\n");
return 0;
}