@keywords a .
@prefix : <http://example.org/ns/plan3#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .

<> doc "select2.n3 - Query Select Test"; 
   dc:author [ foaf:homepage <http://inamidst.com/sbp/> ] .

main script (
   (var docs (select ?s from program where { <> doc ?s }))
   (say (docs 0))
) .

# EOF

