RosettaCodeData/Task/Integer-sequence/Jq/integer-sequence-1.jq

3 lines
38 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
def iota: ., (. + 1 | iota);
0 | iota