This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/packages/sgml/RDF/suite/ok/ex_19.ok
2009-03-13 19:39:06 +00:00

15 lines
660 B
Plaintext

rdf('http://example.org/basket', 'http://example.org/stuff/1.0/':hasFruit, '__List1').
rdf(l1, rdf:type, rdf:'Statement').
rdf(l1, rdf:subject, 'http://example.org/basket').
rdf(l1, rdf:predicate, 'http://example.org/stuff/1.0/':hasFruit).
rdf(l1, rdf:object, '__List1').
rdf('__List1', rdf:type, rdf:'List').
rdf('__List1', rdf:first, 'http://example.org/banana').
rdf('__List1', rdf:rest, '__List2').
rdf('__List2', rdf:type, rdf:'List').
rdf('__List2', rdf:first, 'http://example.org/apple').
rdf('__List2', rdf:rest, '__List3').
rdf('__List3', rdf:type, rdf:'List').
rdf('__List3', rdf:first, 'http://example.org/pear').
rdf('__List3', rdf:rest, rdf:nil).