xref: /freebsd/contrib/one-true-awk/bugs-fixed/nf-self-assign.awk (revision 732a02b4e77866604a120a275c082bb6221bd2ff)
1BEGIN {
2	$0="a b c";
3	OFS=",";
4	NF = NF;
5	print;
6}
7