20 lines
972 B
C
20 lines
972 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* main.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: gtertysh <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2016/11/07 12:53:44 by gtertysh #+# #+# */
|
|
/* Updated: 2016/11/07 14:13:06 by gtertysh ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
int a;
|
|
printf("Hello!");
|
|
return (0);
|
|
}
|