POPS
Syntax POPS
 
Explanation POPS prints all user-defined procedures and their definitions. POPS is equivalent to PRINTOUT PROCEDURES. To print out only procedure titles, use POTS.

An optional input may be supplied which acts as a filter. POPS then only prints those procedures whose name starts with the same characters as the second input. POPS S will, for example, only print those procedures which start with the letter S. This allows a more efficient use of this command when many procedures are defined.

See also  PONS, POPRS, and POPLS.
 

Examples TO LINE
     FD 30

END
LINE defined
TO CIRCLE
     REPEAT 360 [FD 1 RT 1] 

END
CIRCLE defined
POPS 
TO CIRCLE 
     REPEAT 360 [FD 1 RT 1] 
END
TO LINE

     FD 30 
END

TopIndex