Help for this page

Select Code to Download


  1. or download this
    my $var = '' if 0;
    
  2. or download this
    if (0) { my $var = ''; }
    
  3. or download this
    bash$ perl -e 'for(1..3){my $i if 0; print $i++, "\n"}'
    0
    ...
    0
    0
    0