Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    
  2. or download this
    #!perl -w
    use strict;
    
  3. or download this
      $foo.='some string';
    
  4. or download this
      $foo=$foo (operator) (value)
    
  5. or download this
      $foo (operator)= (value)
    
  6. or download this
      $foo+=10;
      $foo*=2;
      $foo.='bar';
      $foo||='default';