Blame test/leaddig.awk

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