* * An example file to show the working of a function call with a return value. */ /* * Run a function which returns a value. */ echo "Function which returns a value; my_return_value_function()\n" echo my_return_value_function() . "\n";