Blame test/mpgforcenum.awk

Packit 575503
BEGIN {
Packit 575503
	split("5apple", f)	# make a strnum
Packit 575503
	x = f[1]+0		# force strnum conversion to number or string
Packit 575503
	print typeof(f[1])	# should be string
Packit 575503
}