-
Notifications
You must be signed in to change notification settings - Fork 5
/
bye.c
19 lines (16 loc) · 968 Bytes
/
bye.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* bye.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: marvin <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/06/15 17:52:31 by marvin #+# #+# */
/* Updated: 2023/06/15 17:52:31 by marvin ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdio.h>
void bye(void)
{
printf("Bye!\n");
}