Example 1: 
 
   > verbosity = 1!;
 
   > dieonerrormode = off;
 
   Die-on-error mode has been deactivated.
 
   > for i from true to false do i + "Salut";
 
   Warning: one of the arguments of the for loop does not evaluate to a constant.
 
   The for loop will not be executed.
 
   > exp(17);
 
   Warning: rounding has happened. The value displayed is a faithful rounding to 165 bits of the true result.
 
   Warning: For at least 1 of the constants displayed in decimal, rounding has happened.
 
   2.41549527535752982147754351803858238798675673527224e7
 
 
 
Example 2: 
 
   > verbosity = 1!;
 
   > dieonerrormode = off!;
 
   > 5 */  4;
 
   Warning: syntax error.
 
   The last symbol read has been "/".
 
   Will skip input until next semicolon after the unexpected token. May leak memory.
 
     exp(17);
 
   Warning: rounding has happened. The value displayed is a faithful rounding to 165 bits of the true result.
 
   Warning: For at least 1 of the constants displayed in decimal, rounding has happened.
 
   2.41549527535752982147754351803858238798675673527224e7
 
 
 
Example 3: 
 
   > verbosity = 1!;
 
   > dieonerrormode;
 
   off
 
   > dieonerrormode = on!;
 
   > dieonerrormode;
 
   on
 
   > for i from true to false do i + "Salut";
 
   Warning: one of the arguments of the for loop does not evaluate to a constant.
 
   The for loop will not be executed.
 
   Warning: some syntax, typing or side-effect error has occurred.
 
   As the die-on-error mode is activated, the tool will be exited.
 
 
 
Example 4: 
 
   > verbosity = 1!;
 
   > dieonerrormode = on!;
 
   > 5 */  4;
 
   Warning: syntax error.
 
   The last symbol read has been "/".
 
   Will skip input until next semicolon after the unexpected token. May leak memory.
 
   Warning: some syntax, typing or side-effect error has occurred.
 
   As the die-on-error mode is activated, the tool will be exited.
 
 
 
Example 5: 
 
   > verbosity = 0!;
 
   > dieonerrormode = on!;
 
   > 5 */  4;