diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2021-03-08 18:31:52 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2021-03-08 18:31:52 +0200 |
commit | 5fd7d2faf13484c595f7cd74468711282816796d (patch) | |
tree | 54a7716c5bb875481044352dfedef90c6bc68199 /test/intest.awk | |
parent | b9931e852ba21180c380639135f96cdcd0a3015f (diff) | |
download | egawk-5fd7d2faf13484c595f7cd74468711282816796d.tar.gz egawk-5fd7d2faf13484c595f7cd74468711282816796d.tar.bz2 egawk-5fd7d2faf13484c595f7cd74468711282816796d.zip |
More progress on bool.
Diffstat (limited to 'test/intest.awk')
-rw-r--r-- | test/intest.awk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/intest.awk b/test/intest.awk index f030d07a..18e0cc4d 100644 --- a/test/intest.awk +++ b/test/intest.awk @@ -1,4 +1,4 @@ BEGIN { - bool = ((b = 1) in c); - print bool, b # gawk-3.0.1 prints "0 "; should print "0 1" + bool_result = ((b = 1) in c); + print bool_result, b # gawk-3.0.1 prints "0 "; should print "0 1" } |