From bc70de7b3302d5a81515b901cae376b8b51d2004 Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Fri, 16 Jul 2010 13:09:56 +0300 Subject: Move to gawk-3.1.0. --- test/lint.awk | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 test/lint.awk (limited to 'test/lint.awk') diff --git a/test/lint.awk b/test/lint.awk new file mode 100644 index 00000000..ea7b8e38 --- /dev/null +++ b/test/lint.awk @@ -0,0 +1,14 @@ +# lint.awk --- test lint variable + +BEGIN { + a[1] = 1 + LINT = 1 + delete a[2] + LINT = "" + delete a[3] + LINT = "true" + delete a[4] + LINT = 0 + delete a[5] + print "done" +} -- cgit v1.2.3