kishtarn555 / rekarel-core

MIT License
0 stars 0 forks source link

[Feature] Added continue and break #55

Closed kishtarn555 closed 5 days ago

kishtarn555 commented 5 days ago

Fixes https://github.com/kishtarn555/rekarel-core/issues/36

mientras verdadero hacer
inicio
    si frente-bloqueado entonces
    inicio
        rompe;
    fin;
    avanza;
fin;
while (true) {
    if (frontIsBlocked) {
        break;
    }
    move();
}