RosettaCodeData/Task/Higher-order-functions/Jq/higher-order-functions-2.jq
2023-07-01 13:44:08 -04:00

3 lines
48 B
Text

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