mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
6462517d32
svn path=/trunk/; revision=58492
13 lines
130 B
C
13 lines
130 B
C
#include <stdio.h>
|
|
|
|
int n = 0;
|
|
|
|
int
|
|
main (int argc, char * argv [])
|
|
{
|
|
while (1) printf ("%d ", n ++ );
|
|
return (0);
|
|
}
|
|
|
|
/* EOF */
|