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