gno/usr.bin/awk/tests/parser.in
tribby ddb82cb2e0 Remaining files for awk 2.0 that were left out of the previous checkin.
Maybe someday I'll become adept at using cvs...
1998-04-07 17:06:53 +00:00

14 lines
196 B
Plaintext

BEGIN { x = 0; y = 1 }
$1 > x { if (x == y+1) {
x = 1
y = x * 2
} else
print x, z[x]
}
NR > 1 { print $1 }
END { print NR }