$ perl -wle 'print ("foo") . "bar"' print (...) interpreted as function at -e line 1. Useless use of concatenation (.) or string in void context at -e line 1. foo $ perl -wle 'my $s = length ("foo") . "bar"'