“In code you can use a number (decimal between 1 and 99) as a label.
This is treated as temporary, and you can use the same number as
many times as you like. In a branch instruction “1f” (forward) refers to the next “1:” label in the code and “1b” (back) refers to the previous “1:”label. This saves you thinking about names for little branches and loops.Reserve named labels for subroutine entry points or for exceptionally big jumps.“