RosettaCodeData/Task/Integer-sequence/AWK/integer-sequence.awk

5 lines
61 B
Awk

BEGIN {
for( i=0; i != i + 1; i++ )
print( i )
}