RosettaCodeData/Task/Currying/Jq/currying-1.jq
2017-09-25 22:28:19 +02:00

3 lines
41 B
Text

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