24 lines
1015 B
C
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);
|
|
}
|