6.2.1.2. Test output

The result of running the test.
Start output section of "/usr/local/bin/python" interscript/tests/test_sets.py
     1: Interscript version 1.0a8 build 1378
     2: Built by root on ruby at Sun Nov 29, 1998 at 08:48 PM (UTC)
     3: Generated by 1.0a8 buildno 1376 host ruby
     4: at Sun Nov 29, 1998 at 08:48 PM (UTC)
     5: s1= set(3, 2, 1)
     6: s2= set(30, 20, 3, 10)
     7: s1|s2= set(10, 30, 20, 3, 2, 1)
     8: s1&s2= set(3)
     9: s1^s2= set(30, 20, 10, 1, 2)
    10: s1+s2= set(10, 30, 20, 3, 2, 1)
    11: s1-s2= set(2, 1)
    12: s1==s1= 1
    13: s1[:]= set(3, 2, 1)
    14: s1[1:-1]= set(2)
    15: s1==s2= 0
    16: s1<s2= 1
    17: s1>s2= 0
    18: s1.le(s2)= 0
    19: s1.lt(s2)= 0
    20: s1.ge(s2)= 0
    21: s1.gt(s2)= 0
    22: s1= set(9, 8, 7, 6, 5, 4, 3, 2, 1)
    23: s2= set(7, 5, 3, 9, 1)
    24: s1.le(s2)= 0
    25: s1.lt(s2)= 0
    26: s1.ge(s2)= 1
    27: s1.gt(s2)= 1
End output section to "/usr/local/bin/python" interscript/tests/test_sets.py