24 lines
1015 B
C
24 lines
1015 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* main.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/03/18 02:09:32 by tischmid #+# #+# */
|
|
/* Updated: 2023/03/18 02:51:40 by tischmid ### ########.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);
|
|
}
|