-
Notifications
You must be signed in to change notification settings - Fork 22
/
example.c
19 lines (17 loc) · 972 Bytes
/
example.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* example.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jrameau <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/10/07 14:33:37 by jrameau #+# #+# */
/* Updated: 2016/10/07 14:33:39 by jrameau ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int main(void)
{
ft_putstr("DON'T PANIC");
return (0);
}