RosettaCodeData/Task/Function-composition/Jq/function-composition.jq

3 lines
53 B
Plaintext

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