Quote:
Originally Posted by zokemon
Oh? I've been in such a habit to spam temp. everywhere that I see that I would have no way of knowing this.
|
That's what I do.
on Java,
PHP Code:
for ( int i = 0; i < 5; i ++ )
the variable 'i' is contained in the for and is not made global like if you were to do:
PHP Code:
int i;
for ( i = 0; i < 5; i ++ )
Perhaps Graal does something similar?