!!! Demo for Bug in Literal Parser The rdfs:label value "42F" is wrongly interpreted as a number. It should be a String! %%package litbug %%Ontology @uses: litbug % %%Turtle :joba rdf:type owl:Class ; rdfs:label "42F" ; rdfs:label "123"^^xsd:string ; rdfs:label "456"^^xsd:number . % * "42F" must not be interpreted as number, but string * "123" and "456" are correctly parsed as string and number, respectively