summaryrefslogtreecommitdiff
path: root/day2/miscellaneus/numbers.c
blob: 5a86d9f536cd95005c50db69d85f43b721c9f3c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <unistd.h>

/*void	ft_print_alphabet(void)*/

/*void	ft_putchar(char c)*/

main()
{
	{
       	int c;
       	for (c='0'; c<='9'; c++)
	write(1, &c, 1);
	}
return 0;
}