goto


A goto will cause the execution to jump to a row defined by label.
The label line is terminated with colon.

Example

   b = attribute("MOTOR-ON.ActualValue", sts);
   if (!sts)
     goto some_error;
   ...
some_error:
   say("Something went wrong!");