basic makefile libft main

This commit is contained in:
hugogogo
2026-04-28 09:10:06 +02:00
parent bb138cd00b
commit a2333a3ff1
4 changed files with 130 additions and 0 deletions

15
src/computorv1.c Normal file
View File

@@ -0,0 +1,15 @@
#include "computorv1.h"
int main(int ac, char **av)
{
int i;
i = 0;
while(i < ac) {
ft_putstr_fd(av[i], STDOUT_FILENO);
ft_putchar_fd('\n', STDOUT_FILENO);
i++;
}
return (0);
}