Template:Computer Programming/Control/3

Unconditionals

edit

Unconditionals 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

edit

End a function and return to the calling procedure or function.