Help for this page

Select Code to Download


  1. or download this
    # this should be a compile phase warning
    my $x = 0;
    my $x = 1;
    my $x = 2;
    
  2. or download this
    # this should be a compile phase error
    my $x = 0;
    $x=;
    
  3. or download this
    # this should be a run phase warning
    warn "Test Warning 1";
    
  4. or download this
    # this should be a run phase error
    my $x = 0;
    $x = 711/0;
    
  5. or download this
    #!perl
    # Ensure various coding errors are caught
    
    ...
    '(' . join(q{;}, (map { $_ // 'undef' } @_)) . ')';
    __END__