mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-02 08:59:28 +02:00
15 lines
619 B
Turtle
15 lines
619 B
Turtle
@prefix rs: <http://www.w3.org/2001/sw/DataAccess/tests/result-set#> .
|
|
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
|
@prefix : <http://example.org/#> .
|
|
|
|
[] rdf:type rs:ResultSet ;
|
|
rs:resultVariable "p" ;
|
|
rs:resultVariable "v" ;
|
|
rs:solution [ rs:binding [ rs:value "abc"@en-gb-gb ;
|
|
rs:variable "v"
|
|
] ;
|
|
rs:binding [ rs:value :p4 ;
|
|
rs:variable "p"
|
|
]
|
|
] .
|