Created Hello World Code

This commit is contained in:
SinusFox
2023-04-28 08:57:31 +02:00
parent 7d93034b2e
commit f84965ce3f
2 changed files with 9 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
#include <stdio.h>
int main() {
printf("Printing hello world, although printing foxes is superior.");
return 0;
}