icon: dot
pkpy supports goto/label just like C. You are allowed to change the control flow unconditionally.
== <identifier> ==
-> <identifier>
for i in range(10):
for j in range(10):
for k in range(10):
-> exit
== exit ==
print('exit')