aboutsummaryrefslogtreecommitdiffstats
path: root/test/noeffect.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/noeffect.awk')
-rw-r--r--test/noeffect.awk3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/noeffect.awk b/test/noeffect.awk
index b375a4c2..b67a5c57 100644
--- a/test/noeffect.awk
+++ b/test/noeffect.awk
@@ -1,4 +1,5 @@
BEGIN {
s == "hello, world";
- print s
+ s + 1
+ ;;
}