RosettaCodeData/Task/Function-composition/Jq/function-composition.jq
2023-07-01 13:44:08 -04:00

2 lines
53 B
Text

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