@vmac
Actually, GOTOs are not all that great when making loops, or code in general. They can cause what is known as 'spaghetti code', which is code that's very hard to read and maintain.
If you want to make loops, stick to loop structures like WHILE...WEND, REPEAT...UNTIL and FOR...NEXT.
@Oscar Yeah, I'm a beginner in programming so I use them as a quick way to make my simple programs or for experiementation. However, from playing Human Resource Machine and having to deal with the JUMP command a lot, I can see how GOTO commands can result in some rather ridiculous looking code in more complex programs.