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