RosettaCodeData/Task/Higher-order-functions/Jq/higher-order-functions-2.jq
2017-09-25 22:28:19 +02:00

3 lines
48 B
Text

def g(f; x; y): [x,y] | f;
g(add; 2; 3) # => 5