First page Back Continue Last page Graphics
USING REFERENCE
Book mentions returning a value from a function using a reference parameter.
Many people believe this is bad style.
A function should return only one value to the calling program via its name. All other parameters should be in only.
A procedure should be used if you are returning more than one value. None are returned by its name since a procedure is of type void.