RosettaCodeData/Task/Function-composition/REXX/function-composition.rexx
2023-07-01 13:44:08 -04: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.*/