mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-02 00:49:33 +02:00
21 lines
757 B
Plaintext
21 lines
757 B
Plaintext
@prefix rs: <http://www.w3.org/2001/sw/DataAccess/tests/result-set#> .
|
|
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
|
|
|
[] rdf:type rs:ResultSet ;
|
|
rs:resultVariable "name" ;
|
|
rs:solution
|
|
[ rs:binding [ rs:value "Alice" ;
|
|
rs:variable "name"
|
|
]
|
|
] ;
|
|
rs:solution
|
|
[ rs:binding [ rs:value "Eve" ;
|
|
rs:variable "name"
|
|
]
|
|
] ;
|
|
rs:solution
|
|
[ rs:binding [ rs:value "Bob" ;
|
|
rs:variable "name"
|
|
]
|
|
] .
|