blueloveTH 849c6aabb5 ...
2023-05-03 14:20:18 +08:00

390 B

icon title
dot Goto Statement

goto/label

pkpy supports goto and label just like C. You are allowed to change the control flow unconditionally.

Syntax

Labels are named a dot . and an identifier.

goto .<identifier>
label .<identifier>

Example

for i in range(10):
  for j in range(10):
    for k in range(10):
      goto .exit

label .exit