1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
_:list1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://example.org/#u> .
_:list1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
_:list2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "t" .
_:list2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:list3 .
_:list3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:list1 .
_:list3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
_:list4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://example.org/#s> .
_:list4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:list5 .
_:list5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:list2 .
_:list5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:list6 .
_:list6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
_:list6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
_:list7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://example.org/#p> .
_:list7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:list8 .
_:list8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://example.org/#q> .
_:list8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:list9 .
_:list9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:r .
_:list9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:list10 .
_:list10 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:list4 .
_:list10 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:list11 .
_:list11 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://example.org/#v> .
_:list11 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
<http://example.org/#Subject> <http://example.org/#predicate> _:list7 .
|