hi!!!
It would be helpful if any of you would explain as to why
i get compilation err for the following code:
for(int i=0; i<5; i++)
String tmp = "test"; // Compilation error: var redeclaration
while the code below compiles without any err :
for(int i=0; i<5; i++)
{
String tmp = "test"; // Compiles properly!!!
}