Template:Computer Programming/Control/3

From Wikibooks, open books for an open world
Jump to navigation Jump to search

Unconditionals[edit source]

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 source]

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