|  |  5.1.160 type 
See
 Data types;
 listvar;
 print.Syntax:type name;
 type (name);Type:none
Purpose:prints the name, level, type and value of a variable. To display the
value of an expression, it is sufficient to type the expression followed
by ;.Example:|  |   int i=3;
  i;
==> 3
  type(i);
==> // i int 3
 | 
 |