xref: /freebsd-src/contrib/one-true-awk/bugs-fixed/numeric-output-seps.awk (revision 2eb4d8dc723da3cf7d735a3226ae49da4c8c5dbc)
1BEGIN {
2	$0 = "a b c";
3	OFS = 1;
4	ORS = 2;
5	NF = 2;
6	print;
7	print "d", "e";
8}
9