The goto statement simply
moves the flow of control over to some label. e.g.
...
Hello:
...
goto Hello
...
Goto will execute an unconditional
jump to the destination. In order to place a condition on the
jump it could be wrapped inside an if statement.