source: trunk/essentials/sys-apps/gawk/test/leaddig.awk

Last change on this file was 3076, checked in by bird, 18 years ago

gawk 3.1.5

File size: 216 bytes
Line 
1# check that values with leading digits get converted the
2# right way, based on a note in comp.lang.awk.
3#
4# run with gawk -v x=2E -f leaddig.awk
5BEGIN {
6 print "x =", x, (x == 2), (x == 2E0), (x == 2E), (x == 2D)
7}
Note: See TracBrowser for help on using the repository browser.