Since I am still learning,

with the information above, will the "return" go back to FOR loop in the example below ?
I guess it will, but I also do not like to guess.

Code:
i   VAR BYTE

main:

    FOR i = 0 TO 4
        BRANCHL i,[subName0, subName1, subName2, subName3, subName4]
    NEXT i

GOTO main


subName0:

RETURN


subName1:

RETURN


subName2:

RETURN


subName3:

RETURN


subName4:

RETURN


mister_e, you are also my teacher as you know!