Quote Originally Posted by mister_e View Post

Code:
Start:
        Gosub Somewhere
        Gosub Elsewhere
        goto Start
        
Somewhere:
        HSERIN 2000, SomeWhereElse,[DataXYZ]
        Return
        
SomewhereElse:
        ToGGLE LED
        RETURN
        
ElseWhere:
        LCDOUT $FE,1,"Are AZERTY Keyboards still on the market???"
        RETURN

Somewhere:
HSERIN 2000, SomeWhereElse,[DataXYZ]

SomewhereEnd:
Return

SomewhereElse:
ToGGLE LED
Goto SomewhereEnd
[/code]

HTH

Then i can use two examples? The compiler detects if it is a routine principal or if it is a subroutine?