-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
19 lines (17 loc) · 965 Bytes
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ahatay <ahatay@student.42kocaeli.com.tr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/27 21:05:47 by ahatay #+# #+# */
/* Updated: 2022/02/15 20:48:36 by ahatay ### ########.fr */
/* */
/* ************************************************************************** */
void rush(int x, int y);
int main(void)
{
rush(25, 25);
return (0);
}