Blame test/fldterm.awk

Packit 575503
BEGIN {
Packit 575503
	# choose a field separator that is numeric, so we can test whether
Packit 575503
	# force_number properly handles unterminated numeric field strings
Packit 575503
	FS = "3"
Packit 575503
}
Packit 575503
Packit 575503
{
Packit 575503
	print $1+0
Packit 575503
	print $1
Packit 575503
}