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

4 lines
165 B
Rexx
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
compose: procedure; parse arg f,g,x; interpret 'return' f"(" g'(' x "))"
2015-02-20 00:35:01 -05:00
2017-09-23 10:01:46 +02:00
exit /*control should never gets here, but this was added just in case.*/