in reply to Is there a reason to use "join" instead of just using the period?
Expressions, ternaries, refs, method calls, etc. will fit nicely while still, imo, being readable.$hotfix = sprintf( q{%s_%s_%s_%s.zip}, $app, $mod, $bld, $hf, );
Although in the second (simple) case
looks better to me.$fullpath = join(q{/}, $dir, $filename);
ymmv
|
|---|