oh, redeclaring is allowerd and mostly results in this spaghetie source:

Code:
for(int i = 0; i < 10; i++)
{
  for(int i = 0; i < 100; i++)
  {
    dosomethingwithint(i);
  }
}



I hate nested loops with redeclared vars ARGH -.-

Last edited by Rackscha; 02/11/13 17:25.

MY Website with news of my projects:
(for example my current
Muliplayer Bomberman,
GenesisPrecompiler for LiteC
and TileMaster, an easy to use Tile editor)
Sparetime-Development