in reply to GOTO or not GOTO

Through all my perl programming, I have used goto LABEL only once - to show what hell is like. (Magic goto is another thing, and not for your audience.) Almost every time there's something wrong with your program's structure if you use goto LABEL. There's next, last and redo for control structures; and jumping around in code with goto is - lack of structure.