312fed855e8663d2fe2c5435ebf171b38100df65
[tinycc.git] / tests2 / 04_for.c
blob312fed855e8663d2fe2c5435ebf171b38100df65
1 #include <stdio.h>
3 int main()
5 int Count;
7 for (Count = 1; Count <= 10; Count++)
9 printf("%d\n", Count);
12 return 0;
15 // vim: set expandtab ts=4 sw=3 sts=3 tw=80 :