mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-30 15:39:27 +02:00
20 lines
658 B
Plaintext
20 lines
658 B
Plaintext
@prefix rs: <http://jena.hpl.hp.com/2003/03/result-set#> .
|
|
|
|
[] a rs:ResultSet ;
|
|
rs:resultVariable "y" , "x" , "v" ;
|
|
rs:size "1" ;
|
|
rs:solution
|
|
[ rs:binding
|
|
[ rs:value 5 ;
|
|
rs:variable "v"
|
|
] ;
|
|
rs:binding
|
|
[ rs:value <http://rdf.hp.com/r> ;
|
|
rs:variable "x"
|
|
] ;
|
|
rs:binding
|
|
[ rs:value <http://rdf.hp.com/p5> ;
|
|
rs:variable "y"
|
|
]
|
|
] .
|