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

4 lines
165 B
Rexx

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.*/