kleiner Fehler in der Hilfe
Posted: 15 Nov 2016 18:23
Hi Martin ich weiß nicht ob dir das schon aufgefallen ist aber in der Hilfe zu Script hat sich ein kleiner Schreibfehler eingeschlichen:
sollte da nicht continue statt break stehen?
Code: Select all
continue statement
Das continue-Statement kann verwendet werden, um eine Schleife sofort mit der nächsten Iteration fortzuführen.
Beispiel:
for (a in [1 to 10])
{
if (a == 4)
{
break;
}
log(a);
}
log("X");
//logs 1, 2, 3, 5, 6, 7, 8, 9, 10, X