in reply to Perl style: Arguing against three-argument join()

After thinking further, I suspect I would actually prefer the following:
sub make_expression { my ($item, $config) = @_; return $config->{prefix} . $item . $config->{suffix}; } my $formatted_item = make_expression( $item, \%config );
The thinking is this:

My criteria for good software:
  1. Does it work?
  2. Can someone else come in, make a change, and be reasonably certain no bugs were introduced?