RosettaCodeData/Task/Currying/Jq/currying-1.jq

4 lines
41 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
def plus(x): . + x;
def plus5: plus(5);