5 lines
70 B
Perl
5 lines
70 B
Perl
Format: Expression2 if Expression1;
|
|
|
|
$x = 5;
|
|
print $x if $x == 5;
|