using c now

This commit is contained in:
Linus109
2025-11-23 11:21:55 +01:00
parent 02bf8ebf83
commit 5e4a9ac647
3 changed files with 9 additions and 1 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
hello

8
hello.c Normal file
View File

@@ -0,0 +1,8 @@
#include "stdio.h"
#include "stdlib.h"
int main(int argc, char *argv[])
{
printf("testing testing\n");
return 0;
}

View File

@@ -1 +0,0 @@
print("Hello World!")