Help for this page

Select Code to Download


  1. or download this
    perl -e 'my $x; if ($x = 1) {}'
    
  2. or download this
    perl -Xe 'my $x; if ($x = 1) {}'
    
  3. or download this
    # disable all warnings
    no warnings;
    ...
    no warnings 'syntax';
    my $x;
    if ($x = 1) {}