Help for this page

Select Code to Download


  1. or download this
    % perl -we '$foo = 1; 3 >> $foo'  
    Useless use of right bitshift (>>) in void context at -e line 1.
    
  2. or download this
    use strict;
    use warnings;
    ...
    my $x = "test" >> $foo;
    __END__
    OK!
    
  3. or download this
    () = "test" >> $foo;