Template:Computer Programming/Control/3
Unconditionals
editUnconditionals let you change the flow of your program without a condition. You should be careful when using unconditionals. Often they make programs difficult to understand. Read Isn't goto evil? for more information.
return
editEnd a function and return to the calling procedure or function.