xref: /freebsd/contrib/one-true-awk/bugs-fixed/decr-NF.awk (revision d8ffc21c5ca6f7d4f2d9a65dc6308699af0b6a01)
1BEGIN {
2	$0 = "a b c d e f"
3	print NF
4	OFS = ":"
5	NF--
6	print $0
7	print NF
8	NF++
9	print $0
10	print NF
11}
12