aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in/while.c
blob: 00ad19d6093a04859ac04467c6908ea9c5c7ef73 (plain)
1
2
3
4
5
6
7
8
9
10
11
int main()
{
    int x = 0;

    while(x < 10)
    {
	x = x + 1;
    }

    return x;
}