(root)/
gawk-5.2.2/
test/
numstr1.awk
BEGIN {
	split("1.234", f)
	OFMT = "%.1f"
	print f[1]
	x = f[1]+0
	print f[1]
}