my $file = shift || 'foo.html'; #### my $arg = shift; my $file; if ($arg) { $file = $arg; } else { $file = 'foo.html'; }
## my $arg = shift; my $file; if ($arg) { $file = $arg; } else { $file = 'foo.html'; }