| POTS | |
| Syntax | POTS POTS filter |
| Explanation | POTS prints the titles of all
user-defined procedures. To print out procedure
definitions, use POPS. An optional input may be supplied which acts as a filter. POTS then only prints those procedure names which start with the same characters as the second input. POTS S will, for example, only print those procedure names which start with the letter S. This allows a more efficient use of this command when many names are defined. |
| Examples | TO LINE FD 30 END LINE defined TO CIRCLE REPEAT 360 [FD 1 RT 1] END CIRCLE defined POTS TO LINE :LENGTH TO CIRCLE |