/** This simple program lists the names of all units.  Its output can be saved
    to a file and used to make a completion list for a program like rlwrap
    which allows interactive editing on the command-line

    rlwrap -f [filename] frink
*/
units = lexicalSort[units[]]
for u = units
   println[u]