RosettaCodeData/Task/Integer-sequence/jq/integer-sequence-1.jq
2016-12-05 23:44:36 +01:00

2 lines
38 B
Text

def iota: ., (. + 1 | iota);
0 | iota