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

2 lines
53 B
Text

# apply g first and then f
def compose(f; g): g | f;