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