aboutsummaryrefslogblamecommitdiff
path: root/contrib/one-true-awk/bugs-fixed/nf-self-assign.awk
blob: 6ae29eef916dc903fb10c670a7e7b3940d1c56ae (plain) (tree)
1
2
3
4
5
6





                   
BEGIN {
	$0="a b c";
	OFS=",";
	NF = NF;
	print;
}