You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In IS, you can use a standard, C like while block, but it works as a do while block. Instead of while like in C, IterkoczeScript uses a while else block.
for example:
val = 10;
while (val < 10) {
val = val + 1;
}
else {
Write("Variable `val` was big enough");
}