int a = 5;
int b = 7;
if (a > b)
{
b += 1;
}
else
{
b -= 1;
}
Is this what your talking about?
server_crash
Postaholic
2,111 posts since Jun 2004
Reputation Points: 113
Solved Threads: 20
is IF a loop ??? heard it for the first time ?? :D
nanosani
Unauthenticated Liar
1,830 posts since Jul 2004
Reputation Points: 45
Solved Threads: 56
It can be used as a recursive function. I guess that's what he was talking about...Maybe...?
server_crash
Postaholic
2,111 posts since Jun 2004
Reputation Points: 113
Solved Threads: 20
10 a=1
20 if (a=1) goto 10
Loopy enough? Not Java of course ;)
jwenting
duckman
8,392 posts since Nov 2004
Reputation Points: 1,662
Solved Threads: 337