A Review of REXX Functions
Characteristics of a function
The function is invoked (sometimes) with an
argument
.
The function
always
retuns a value to the caller
This Code Fragment...
...Yields This Result:
Say date()
19 Sep 1998
Say date('M')
September
Next