GoSub...Return

The GoSub command can call a subroutine. The Return command must be used at the end of the subroutine.

GoSub ADD_VALUE
 
ADD_VALUE:
  A = A + 1
  Return

Go CUBLOC home