Help for this page

Select Code to Download


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