Printing All the Names in the Names Soup

In Sorted Order

soup := GetUnionSoup("Names");
curs := soup:Query({indexPath: 'sortOn});
e := curs:Entry();
while e do begin
   Print(e.sortOn);
   e := curs:Next();
end;

An online version of Programming for the Newton using Macintosh, 2nd ed. ©1996, 1994, Julie McKeehan and Neil Rhodes.

Last modified: 1 DEC 1996