Function Bug: Solved
Function Bug: Solved
Is this a bug? I cannot get this function to work.
int TEST(int counter)
{
if(counter == 0)
{
return counter;
}
else
{
counter=counter - 1;
thisapp.TEST(counter);
}
}
The error is
missing return statement