Example 1: 
 
   > verbosity=1!; prec=12!;
 
   > a = 2*pi;
 
   > a;
 
   Warning: rounding has happened. The value displayed is a faithful rounding to 12 bits of the true result.
 
   6.283
 
   > prec=20!;
 
   > a;
 
   Warning: rounding has happened. The value displayed is a faithful rounding to 20 bits of the true result.
 
   6.28319
 
 
 
Example 2: 
 
   > display=binary;
 
   Display mode is binary numbers.
 
   > prec=12!;
 
   > d = [pi; 5];
 
   > d;
 
   [1.1001001_2 * 2^(1);1.01_2 * 2^(2)]
 
   > prec=20!;
 
   > d;
 
   [1.1001001_2 * 2^(1);1.01_2 * 2^(2)]