| line # |
|
comments |
| 4 |
|
first line out of a subroutine |
| 5 |
abc |
subroutine ``abc'' stores the line # to return to |
| |
return line # |
|
| |
6 |
|
| 2 |
|
the only line in the subroutine to execute |
| 3 |
return |
we are ready to return, use the stored return line # |
| 6 |
|
now we are back to the invoker's (caller's) code |