Blame test/ofmtstrnum.awk

Packit 575503
BEGIN {
Packit 575503
	split(" 1", f, "|")
Packit 575503
	OFMT = "%.1f"
Packit 575503
	print f[1]
Packit 575503
	x = f[1] + 0
Packit 575503
	print f[1]
Packit 575503
}