in reply to Is there a clever way to interpolate a method?

Here's a TIMTOWTDI for join.

my $string = join q{ }, 'start', $obj->middle(), 'end';

This way you don't have to remember to put spaces at the borders between literals and interpolateds.