Help for this page

Select Code to Download


  1. or download this
          my $string= "mirod";
          $string += " is dumb"; # $string is now "mirod is dumb"
          $string -= "Sure ";    # $string is now "Sure mirod is dumb"
    
  2. or download this
          $string="I am _not_ dumb";
          $string -= "_not_ ";        # now guess what's in $string?
    
  3. or download this
          my $string= "can";
          $string >> " compromise"; # $string is now "can compromise"
          $string << "I ";          # $string is now "I can compromise"