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

3 lines
38 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
def iota: ., (. + 1 | iota);
0 | iota