"Symbol is already defined" means the line the error occurs at is the second attempt to define the same named symbol. Only one definition of each name is allowed, otherwise the interpreter/compiler/assembler wouldn't know which one is being referenced when using it in the program.
Choose a unique label/symbol name, the problem goes away.
Thanks! I have to learn again how to do a proper search inside 2.5 Help. The top "search" window line is different from the left bottom "search" and it spooked me well
Comments
Choose a unique label/symbol name, the problem goes away.