10 lines
826 B
Text
Executable file
10 lines
826 B
Text
Executable file
<http://example.com/Subj1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://example.com/Type> .
|
|
_:a <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "apple" .
|
|
_:a <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b .
|
|
_:b <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "bananna" .
|
|
_:b <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
|
<http://example.com/Subj1> <http://example.com/literalList> _:a .
|
|
<http://example.com/Subj1> <http://example.com/emptyList> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
|
_:c <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://example.com/iri> .
|
|
_:c <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
|
<http://example.com/Subj1> <http://example.com/iriList> _:c .
|