123456789101112131415161718
C:\>perluse strict;use warnings;my $x = 2;my $test = 123 if $x;print $test;^Z123C:\>perluse strict;use warnings;my $x = 0;my $test = 123 if $x;print $test;^ZUse of uninitialized value in print at - line 5.C:\>