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

3 lines
53 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
# apply g first and then f
def compose(f; g): g | f;