no that is not what i meant.
what i mean is this :
sub mysub()
gosub someroutine
exit sub
someRoutine:
nop
return
end sub
as you can see you can nest/embed other routines in mysub but reversed it does not work :
someroutine:
sub abc()
'the implementation should not be inside a sub routine
end sub
return
↧