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
startdo {
readdatageneratediagrams
} while (moredata? isyes) until (no)
stop
Repeat loop with repeat action and backward action
startdo {
l_foo: fooasstartinglabelreaddatageneratediagrams
} while (moredata? isyesgotol_backward) until (no) gotol_stopl_backward: thisisbackwardgotofool_stop: stop
Break on a repeat look [break]
start
do {
Test something
if(Something went wrong? is no) {
[palegreen]OK
break
} else if(NOK) {
Alert "Error with long text"
}
} while (Something went wrong with long text? is yes) until (no)
Alert "Success"
stop