RosettaCodeData/Task/Loops-For-with-a-specified-step/AWK/loops-for-with-a-specified-step.awk
2023-07-01 13:44:08 -04:00

6 lines
92 B
Awk

BEGIN {
for (i= 2; i <= 8; i = i + 2) {
print i
}
print "Ain't never too late!"
}