Just wondering why this code crashed my UE if i delete it it works fine but if i press play with this in my code it freezes
int32 i = 0;
while (i < 2)
{
PrintLine(TEXT("%i"), i);
}
for (int32 Index = 0; Index < 2; Index++)
{
PrintLine(TEXT("%1"), Index);
}
int32 j = 0;
do
{
PrintLine(TEXT("%1"), j);
j++;
} while (j < 2);