mirror of
https://github.com/mirror/tinycc.git
synced 2025-01-03 04:30:08 +08:00
19 lines
240 B
C
19 lines
240 B
C
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
int Count = 0;
|
|
|
|
for (;;)
|
|
{
|
|
Count++;
|
|
printf("%d\n", Count);
|
|
if (Count >= 10)
|
|
break;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/
|