feat: added main.c and main.h

This commit is contained in:
Zoëy Noort 2025-05-11 19:53:37 +02:00
parent 6aef79af7e
commit c8df613f41
2 changed files with 6 additions and 0 deletions

5
srcs/main.c Normal file
View file

@ -0,0 +1,5 @@
#include "libft.h"
int main(void) {
ft_printf("Hello\n");
}