diff options
Diffstat (limited to 'test/nfldstr.awk')
-rw-r--r-- | test/nfldstr.awk | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/nfldstr.awk b/test/nfldstr.awk new file mode 100644 index 00000000..09b4a2b8 --- /dev/null +++ b/test/nfldstr.awk @@ -0,0 +1,13 @@ +$1 == 0 { + print "bug" +} +{ + $0 = "0" + if (!$0) + print "another bug" + $0 = a = "0" + if (!$0) + print "yet another bug" + if ($1) + print "a buggie" +} |