summaryrefslogtreecommitdiffstats
path: root/filter/test.conf
diff options
context:
space:
mode:
Diffstat (limited to 'filter/test.conf')
-rw-r--r--filter/test.conf5
1 files changed, 4 insertions, 1 deletions
diff --git a/filter/test.conf b/filter/test.conf
index abe9d3f..f266828 100644
--- a/filter/test.conf
+++ b/filter/test.conf
@@ -50,7 +50,10 @@ clist l;
l = - empty -;
l = add( l, (1,2) );
- print "Community list ", l;
+ l = add( l, (2,3) );
+ print "Community list (1,2) (2,3) ", l;
+ l = delete( l, (2,3) );
+ print "Community list (1,2) ", l;
}
function startup()