@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 "types.n3 - Print Out Various Types"; 
   dc:author [ foaf:homepage <http://inamidst.com/sbp/> ] .

main script (
   (out "<http://example.org/>: ") (type <http://example.org/>)
   (out "<http://example.org/#frag>: ") (type <http://example.org/#frag>)
   (out "_:test: ") (type _:test)
   (out "\"test\": ") (type "test")
   (out "?test: ") (type ?test)
   (out "{ p q r }: ") (type { p q r })
   (out "(): ") (type ())
   (out "(p q r): ") (type (p q r))
   (out "1: ") (type 1)
   (out "1.1: ") (type 1.1)
) .

# EOF

