05.12.2017, 20:27
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!
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!