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