print "Result: ", $object->function_call(), "\n"; #### print "Result: " . $object->function_call() . "\n"; #### print "Result: @{ [ $object->function_call() ] }\n"; #### print "Result: " . join(" ", $object->function_call() ) . "\n";