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

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

gawk 3.1.5

File size: 167 bytes
Line 
1# lint.awk --- test lint variable
2
3BEGIN {
4 a[1] = 1
5 LINT = 1
6 delete a[2]
7 LINT = ""
8 delete a[3]
9 LINT = "true"
10 delete a[4]
11 LINT = 0
12 delete a[5]
13 print "done"
14}
Note: See TracBrowser for help on using the repository browser.