14.01.2015, 03:43
DOES DO..WHILE WORK IN PAWN?
Ok, in C++ you can use do..while like this:
Most of us would do this:
It's not important to me, I just want to know if this works in pawno...
WHY IS PAWNCC CRASHING?
Ok, it's not like a missing bracket crash. The only thing I can figure the cause being is the do..while thing I mentioned above. I'm going to test without do before moving forward on the question...
EDIT: Just tested, do..while is not causing the crash!
Ok, in C++ you can use do..while like this:
pawn Код:
do
{
//stuff
}
while(i<j)
pawn Код:
while(i<j)
{
//stuff
}
WHY IS PAWNCC CRASHING?
Ok, it's not like a missing bracket crash. The only thing I can figure the cause being is the do..while thing I mentioned above. I'm going to test without do before moving forward on the question...
EDIT: Just tested, do..while is not causing the crash!