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