-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.c
More file actions
19 lines (17 loc) · 972 Bytes
/
example.c
File metadata and controls
19 lines (17 loc) · 972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* example.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: apavelko <apavelko@student.unit.ua> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/11/04 14:23:17 by apavelko #+# #+# */
/* Updated: 2017/11/11 16:17:47 by apavelko ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int main(void)
{
ft_putstr("DON'T PANIC");
return (0);
}