RosettaCodeData/Task/Function-composition/REXX/function-composition.rexx
2017-09-25 22:28:19 +02:00

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