You can nest several procedures inside another procedure.
To call the procedure, all you have to do is type its name into the command line.
| |
| Advantages of Using Procedures |
- A procedure can be called many times in a program. This means that the commands within the procedure only have to be written out once instead of several times.
- A procedure can be edited easily. This means that the commands within the procedure only need to be changed once if a mistake is spotted instead of several times.
| |