!!! 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 .
%