the following for loop is in the constructor in my world, but it isnt executed one time.
int x= 3;
for(int i = 0; i == x; i++)
{
System.out.println(i);
}
