6 lines
65 B
Perl
6 lines
65 B
Perl
if ($expression) {
|
|
do_something;
|
|
}
|
|
else {
|
|
do_fallback;
|
|
}
|