@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .
@prefix : <http://example/> .

:x1 :p1 1 ;
    :p2 1.0 ;
    :p3 1.0e0 ;
    :p4 () ;
    :p5 (1 2 "three" ) ;
    :p6  [ :q 57 ; :q 89 ] ;
    :p7 _:a .

_:a  :p1 :z ;
     :p2 "str" ;
     :p3 "str"^^xsd:string .

[]  :p :z .

:z rdfs:label "Swansea"@en , "Abertawe"@cy ;
   :q1 "2011-03-23T13:40:22.489+00:00"^^xsd:dateTime ;
   :q2 "2011-03-23Z"^^xsd:date ;
   :q3 "2011-03-23"^^xsd:date ;
   :q4 "2011+01:00"^^xsd:gYear ;
   :q5 "2011"^^xsd:gYear .

("a" "b" "c" ) :p [ :p (1 2) , (3 4) ] .

[ :p (1 2) , (3 4) ] :p ("a" "b" "c" ) .

# These are not strict Turtle where everything musb be "subject-predicate" form.
# They are SPARQL.

("a" "b" "c" ) .

[ :p (1 2) , (3 4) ] .

