rot1 #2

Merged
gbrochar merged 13 commits from rot1 into master 2024-08-20 13:52:23 +00:00
1 changed files with 3 additions and 4 deletions
Showing only changes of commit ff92116756 - Show all commits

View File

@ -1,7 +1,6 @@
#include <stdio.h>
int
main(void) {
ft_printf("Hello, World!\n");
return (0x0);
int main(void) {
printf("Hello, World!\n");
return (0);
}