Open fedi-nabli opened 8 months ago
I found a bug, when I place a for loop in another function besides main it thinks it needs a ; after the loop part and gives a segmentation fault.
the code: for (x = 0; x < 50; x += 1) { continue; }
for (x = 0; x < 50; x += 1) { continue; }
Thanks for the report Fedi, Kind Regards, Daniel
I found a bug, when I place a for loop in another function besides main it thinks it needs a ; after the loop part and gives a segmentation fault.
the code:
for (x = 0; x < 50; x += 1) { continue; }