     @prefix : <test#> .
    
    ()     :verb0 :object0 .
      ( "subj1"  )
         :verb1 :object1 .
      ( "subj2a" 
        "subj2b"  )
         :verb2 :object2 .
      ( 1  )
         <#linksEqualLists>  (
        1  ) .
    
    :emptyList     = () .
    
    :listOf2Empties     =  (
        () 
        ()  ) .
    
    :nested     =  (
        :first 
        :second 
         (
            :left3 
            :right3  )
        :fourth  ) .
    
    :threeItems     =  (
        :b 
        :c 
        :d  ) .
    
    :twoAnons     =  (
         [
                 a :mother ]
         [
                 a :father ] ) .
    
    :twoFormulae     =  (
        {:a     a :mother .
            }
        {:b     a :father .
            } ) .
    

