# Another simple example 

@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix log: <http://www.w3.org/2000/10/swap/log#> .
@prefix foaf: <http://xmlns.com/foaf/0.1> .
@prefix : <#> .

:Student rdfs:subClassOf foaf:Person .

:john a :Student;
   foaf:name "John Q Smith";
   foaf:gender "Male";
   foaf:name "John Smith" .
