init commit

This commit is contained in:
user
2025-09-12 18:01:07 +03:00
commit 89be1e519d
2 changed files with 16 additions and 0 deletions

8
Makefile Normal file
View File

@@ -0,0 +1,8 @@
PROG=a.exe
OBJS=main.o
all: $(PROG)
$(PROG): $(OBJS)
$(CC) $(CFLAGS) -o $@ $<

8
main.c Normal file
View File

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