Basic main

This commit is contained in:
Theo 2024-09-05 13:36:32 +02:00
parent b736b4bfb6
commit c88b85cda5

8
main.c Normal file
View File

@ -0,0 +1,8 @@
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char* argv[])
{
printf("Hello, World!");
return EXIT_SUCCESS;
}