blob: 76e620b338ee109d62dd2c0dc3544f9636f8a9d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix ex: <http://example.com/#> .
@prefix example: <http://example.com/> .
ex:foo a example:A .
ex:bar a example:A .
ex:foo rdf:value "abcDEFghiJKL" , "ABCdefGHIjkl", "0123456789",
"http://example.com/literal" .
ex:bar rdf:value "abcDRFghiJKL" , "ABCdrfGHIjkl", "0123456789",
"http://example.com/literal" .
|