Help for this page

Select Code to Download


  1. or download this
    perl -MO=Deparse,-p
    print $x= "hi";
    chomp $x= "hi";
    ...
    unlink(($x = 'hi'));
    die(($x = 'hi'));
    warn(($x = 'hi'));
    
  2. or download this
        left    terms and list operators (leftward)
    [...]
    ...
    [...]
    =head2 Terms and List Operators (Leftward)
    [...]
    
  3. or download this
    [...]
    =head2 List Operators (Rightward)
    
  4. or download this
    chomp( @x )= whatever;
  5. or download this
    chop( $x )= whatever;
    chop( @x )= whatever;
    chomp( $x )= whatever;
    
  6. or download this
    chomp my @input= <STDIN>;