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'; [download]
This way you don't have to remember to put spaces at the borders between literals and interpolateds.