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