qse/regress/awk/lang-039.awk

5 lines
121 B
Awk
Raw Permalink Normal View History

BEGIN {
print length 11 # this should print 011 as length is length($0);
print length (11) # this should print 2
}