@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/> .
@prefix u: <delete.n3#> .

<> doc "delete.n3 - Delete a Statement"; 
   dc:author [ foaf:homepage <http://inamidst.com/sbp/> ] .

main script (
   (store stdin)
   (delete { ?s ?p u:Test })
   (output)
) .

# EOF

