|  |  5.1.133 reservedName 
See
 names;
 string.Syntax:reservedName ()Type:none
Syntax:reservedName (string_expression)Type:int
Purpose:prints a list of all reserved identifiers (first form) or tests
whether the string is a reserved identifier (second form).
This includes blackbox/newstruct types.
Example:|  | reservedName();
==> ... // output skipped
  reservedName("ring");
==> 1
  reservedName("xyz");
==> 0
 | 
 |