| Group: | Information and Control |
| See also: | proc |
| Function: | endp | |
| Description: |
denotes the end of the currently defined procedure
|
| Usage: | endp | |
proc()=myproc() "BODY OF THE PROCEDURE" endp myproc()
The procedure myproc() is now defined (between proc() and endp commands), by calling the procedure, using the command myproc(), you get the following output: Contents of _tmp [1,] "BODY OF THE PROCEDURE"
| Group: | Information and Control |
| See also: | proc |