This repository has been archived on 2026-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
Files
42test/ft_hello_42/ft_hello_42.c
2026-02-28 12:27:14 +01:00

20 lines
973 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_hello_42.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: Syxpi <admin@syxpi.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2026/02/28 11:36:02 by Syxpi #+# #+# */
/* Updated: 2026/02/28 11:39:00 by Syxpi ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
int main(void)
{
write(1, "Hello 42\n", 9);
return (0);
}