RosettaCodeData/Task/Function-composition/REXX/function-composition.rexx

4 lines
165 B
Rexx
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
compose: procedure; parse arg f,g,x; interpret 'return' f"(" g'(' x "))"
exit /*control should never gets here, but this was added just in case.*/