Help for this page

Select Code to Download


  1. or download this
    'a' x 3 => 'aaa'
    'a' x 3*2 => 'aaa' * 2 ==> error You can never combine the
    math operators with strings (unless the string happens to be
    a number) ex:
    '2' x 3*2 = 222*2 => 444, but that's a pretty unclear way to multiply 
    +222 by 2.
    
  2. or download this
    [sic]
    3*2 x ' '
    
  3. or download this
    a=2*3;str=' ';while (a--) strcat(str,str);
    
  4. or download this
    use ExceptionHandler;
    
  5. or download this
    Register_Traceback; #default is to register traceback for 
                        #SIGDIE & SIGWARN
    
  6. or download this
    Regsister_Traceback('QUIT') #(control-\)
    
    ...
    #  = 0x20 = 0=count in bottom nibble, 1=noexit
    # = callback and status returns above val for further
    # = processing
    
  7. or download this
    ' ' x 3*2