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

3 lines
38 B
Text
Raw Permalink Normal View History

2024-03-06 22:25:12 -08:00
def iota: ., (. + 1 | iota);
0 | iota