- or download this
U:\> perl -MO=Deparse -le "$x = 5; if ($x) { print $x }"
$x = 5;
if ($x) {
print $x;
}
- or download this
U:\>perl -MO=Deparse -le "$x = 5; if (0) { print $x }"
$x = 5;
'???';
- or download this
U:\>perl -MO=Deparse -le "$x = 5; if (1) { print $x }"
$x = 5;
print $x;;
- or download this
U:\>perl -MO=Deparse -le "$x = 5; if (! 0) { print $x }"
$x = 5;
print $x;;