Why if i script this:
I get this warning:
warning: recursion in Test
Shall i worry about that? or it's simplily a normal warning to the writer?
Thaks! :D
Code:
forward Test();
public Test()
{
new Random;
Random = random(1);
if(Random == 0) return Test();
return 1;
}
warning: recursion in Test
Shall i worry about that? or it's simplily a normal warning to the writer?
Thaks! :D