blob: 35056c17e31c64e92c3fe67d0820c7735c06b75e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix ex: <http://example.org/> .
<http://example.org/ns#foo>
rdf:object _:genid1 ;
rdf:predicate ex:property ;
rdf:subject ex:resource ;
a rdf:Statement .
ex:resource
ex:property _:genid1 .
_:genid1
<http://www.daml.org/2001/03/daml+oil#first> ex:resource1 ;
<http://www.daml.org/2001/03/daml+oil#rest> <http://www.daml.org/2001/03/daml+oil#nil> ;
a <http://www.daml.org/2001/03/daml+oil#List> .
|