@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 "dbslurp3.n3 - DBPedia Slurp 3"; 
   dc:author [ foaf:homepage <http://inamidst.com/sbp/> ] .

main script (
   (store { { ?s a Test } => { ?s a Tested } . something a Test })
   (think)
   (select ?tested where { ?tested a Tested } 
      (say "Tested: " ?tested))
) .

# EOF

