i have a procedure which execute another procedure . if callable procedure has a 'return' value and if it returns will it come out of whole procedure and from that specific procedure only?..
for ex.
procedure base_procedure
{
exec call_procedure
command-1
}
call_procedure
{
return
}
will command-1 be executed after return from call_procedure?
any suggestion pls?