something weird
-
haha:
int p = 0
int i = 2
int m = i
int o = m * iif (p = 10){
o = i;
print(o);
p++;
goto haha;
}
else
{
p++
}i don't know what i just wrote, but yeh, have fun XD
Its exactly the same as if you had written:
while (true)
{
print(2);
}Although I think that this is not code you've run. First of all "print" isn't a function (nor does it take an integer parameter if it was printf). Next, the "if" statement isn't a check (it will always be true), and it won't compile with all the missing semi-colons.
-
Its exactly the same as if you had written:
while (true)
{
print(2);
}Although I think that this is not code you've run. First of all "print" isn't a function (nor does it take an integer parameter if it was printf). Next, the "if" statement isn't a check (it will always be true), and it won't compile with all the missing semi-colons.
It may a language with which neither of us is familiar. ;P But, yes, more likely a language with which the poster is unfamiliar. :sigh: