Keywords for the algorithms of User Macros
From Protoi Healing
| Keyword | Description |
|---|---|
| BREAK | Gets out of the current structure level. For example if you are in a LOOP, it will stop and leave the LOOP immediately and continue with the algorithm after the LOOP. |
| EXIT | It will stop the execution of the UserMacro immediately. |
| TRY | Skib will try to do whatever follows this TRY. Skib will continue the execution of the algorithm independent of the success. |
| TRY-ERROR | If the belonging earlier TRY was not successful, Skib will execute whatever follows TRY-ERROR. If this is done and not order to finish the algorithm is given, Skib will continue the algorithm at next order. |