mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-23 16:08:07 +02:00
22 lines
877 B
Plaintext
22 lines
877 B
Plaintext
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
|
@prefix rs: <http://www.w3.org/2001/sw/DataAccess/tests/result-set#> .
|
|
|
|
[] <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>
|
|
rs:ResultSet ;
|
|
rs:resultVariable
|
|
"name1", "name2" ;
|
|
rs:solution [ rs:binding [ rs:value "Alice" ;
|
|
rs:variable "name1"
|
|
] ;
|
|
rs:binding [ rs:value "Ms A." ;
|
|
rs:variable "name2"
|
|
]
|
|
] ;
|
|
rs:solution [ rs:binding [ rs:value "Ms A." ;
|
|
rs:variable "name1"
|
|
] ;
|
|
rs:binding [ rs:value "Alice" ;
|
|
rs:variable "name2"
|
|
]
|
|
] .
|