RosettaCodeData/Task/Function-composition/jq/function-composition.jq
2016-12-05 23:44:36 +01:00

2 lines
53 B
Text

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