Like the label
expression, goto
was added in ZPE 1.13.8.
goto
is a very old-fashioned way of traversing a program that is also
incredibly unsafe and not recommended. It was also something I really wanted to include in YASS
from the very beginning and it took over ten years to implement.
goto
works with labels:
YASS
$x = 0 label beginning print($x++) goto beginning
I strongly advise against the use of
goto
. I added this
expression simply for completeness.
Comments