RosettaCodeData/Task/Currying/Jq/currying-1.jq
2023-07-01 13:44:08 -04:00

3 lines
41 B
Text

def plus(x): . + x;
def plus5: plus(5);