6.3 Sequential numbers

Constructs of the same nesting level should use sequential numbers as a suffix to differentiate from each other. For example,

    if (x > y) 
      x++; 
    if (y > x) 
      y++;

translates to

    if (x <= y) goto endIf1; 
      x++; 
    endIf1: 
    if (y <= x) goto endIf2; 
      y++; 
    endIf2: