piscine/r00/ex00/main.c
Willem Haffmans 607ce08c18 all
2024-09-10 00:18:01 +02:00

24 lines
1015 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: whaffman <whaffman@student.codam.nl> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/08 11:54:25 by whaffman #+# #+# */
/* Updated: 2024/06/09 11:39:00 by whaffman ### ########.fr */
/* */
/* ************************************************************************** */
void rush(int x, int y);
int main(void)
{
rush(5, 3);
rush(5, 1);
rush(1, 1);
rush(1, 5);
rush(4, 4);
return (0);
}