Init Commit

Signed-off-by: BuildTools <unconfigured@null.spigotmc.org>
This commit is contained in:
BuildTools
2021-01-03 16:05:51 -05:00
commit fe5ce2a18e
5 changed files with 60 additions and 0 deletions

12
hello_world.c Normal file
View File

@@ -0,0 +1,12 @@
/*
* Learning C with some easy code
* Hello World
*/
#include <stdio.h>
#include <stdlib.h>
int main() {
printf("Hello world!\n");
return EXIT_SUCCESS;
}