aboutsummaryrefslogtreecommitdiffstats
path: root/test/mpgforcenum.awk
blob: b2d0b6f14394b3b19a94310251a2e665624f5b97 (plain)
1
2
3
4
5
BEGIN {
	split("5apple", f)	# make a strnum
	x = f[1]+0		# force strnum conversion to number or string
	print typeof(f[1])	# should be string
}