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

3 lines
53 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
# apply g first and then f
def compose(f; g): g | f;