Blame test/leaddig.awk

Packit 575503
# check that values with leading digits get converted the
Packit 575503
# right way, based on a note in comp.lang.awk.
Packit 575503
#
Packit 575503
# run with gawk -v x=2E -f leaddig.awk
Packit 575503
BEGIN {
Packit 575503
	print "x =", x, (x == 2), (x == 2E0), (x == 2E), (x == 2D)
Packit 575503
}