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