@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: <friends.n3#> .

<> doc "friends2.n3 - Print a List of Friends"; 
   dc:author [ foaf:homepage <http://inamidst.com/sbp/> ] .

main script (
   (say "<ul>")
   (select ?name where { ?f u:friend ?name } 
      (say ("<li>" ?name "</li>")))
   (say "</ul>")
) .

# EOF

